/* Custom CSS untuk Jurnal Tugas Pegawai */

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.card-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 10px 10px 0 0 !important;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.btn-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
}

.btn-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    color: #212529;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.table {
    border-radius: 10px;
    overflow: hidden;
}

.table thead th {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    font-weight: 600;
}

.badge {
    padding: 8px 12px;
    font-size: 0.8rem;
    border-radius: 20px;
}

.status-pending {
    background-color: #ffc107;
    color: #212529;
}

.status-disetujui {
    background-color: #28a745;
    color: white;
}

.status-ditolak {
    background-color: #dc3545;
    color: white;
}

.status-mulai {
    background-color: #17a2b8;
    color: white;
}

.status-proses {
    background-color: #fd7e14;
    color: white;
}

.status-selesai {
    background-color: #6f42c1;
    color: white;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.file-upload-area {
    border: 2px dashed #007bff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    background-color: #f8f9ff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-area:hover {
    background-color: #e6f3ff;
    border-color: #0056b3;
}

.file-upload-area.dragover {
    background-color: #cce7ff;
    border-color: #004085;
}

.rating-stars {
    font-size: 1.5rem;
    color: #ffc107;
}

.rating-stars .fa-star {
    cursor: pointer;
    transition: color 0.2s ease;
}

.rating-stars .fa-star:hover,
.rating-stars .fa-star.active {
    color: #ff8c00;
}

.task-card {
    transition: transform 0.2s ease;
}

.task-card:hover {
    transform: translateY(-5px);
}

.progress-bar {
    border-radius: 10px;
}

@media (max-width: 768px) {
    .login-card {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
}

