/* LAPORAN USER STYLES */
.form-section {
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
    animation: fadeInUp 0.6s ease-out; /* Animation for form sections */
}

.form-section:last-of-type {
    border-bottom: none;
}

/* Form Steps */
.step-item .step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}
.step-item.active .step-number {
    transform: scale(1.1);
}
.step-item.active .step-label {
    color: var(--primary-color);
}

/* File Upload Area */
.file-upload-area {
    border: 2px dashed #dee2e6;
    transition: all 0.3s ease;
    cursor: pointer;
}
.file-upload-area:hover {
    border-color: var(--primary-color);
    background-color: rgba(13, 44, 75, 0.02);
}
.file-card {
    transition: transform 0.2s ease;
    border: 1px solid #e9ecef;
}
.file-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}
.file-name {
    font-size: 0.8rem;
}
.border-dashed {
    border-style: dashed !important;
}

.was-validated .form-control:valid {
    border-color: #198754;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}
.was-validated .form-control:invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6.4.4.4-.4'/%3e%3cpath d='M6 7v2'/%3e%3c/svg%3e");
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}