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

.card {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
}

.form-control, .form-control-file, .btn {
    border-radius: 0.375rem; 
    border: 1px solid #ced4da; 
}

.btn-primary {
    background-color: #0056b3; 
    border: none; 
}

.btn-primary:hover {
    background-color: #003d82; 
}

.status-step {
    color: #adb5bd; 
    padding: 0.5rem 0; 
    transition: all 0.3s ease-in-out; 
}

.status-step.completed {
    color: #28a745; 
}

.status-step.current {
    color: #007bff; 
    font-weight: bold; 
}

.status-step.error {
    color: #dc3545; 
    font-weight: bold; 
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    margin-top: 1.5rem;
}

.result-item {
    background-color: #ffffff; 
    border-left: 5px solid #007bff; 
}

.result-item:hover {
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); 
}

.section-result a {
    color: #007bff; 
    font-weight: 500; 
}

.section-result a:hover {
    color: #0056b3; 
}


.custom-input, .custom-textarea {
    border: 1px solid #ced4da; 
    border-radius: 0.375rem; 
    padding: 0.75rem 1rem; 
    font-size: 1rem; 
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; 
}

.custom-input:focus, .custom-textarea:focus {
    border-color: #80bdff; 
    outline: 0; 
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); 
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem; 
}

.custom-textarea {
    min-height: 120px;
    resize: vertical; 
}



.results-heading {
    font-size: 1.75rem; 
    color: #0056b3; 
    font-weight: bold; 
    padding-bottom: 0.5rem; 
    border-bottom: 2px solid #eee; 
    margin-bottom: 2rem; 
}

.result-item {
    background-color: #ffffff; 
    border: 1px solid #dee2e6;
    padding: 1.5rem; 
    border-radius: 0.375rem; 
    margin-bottom: 1rem; 
    transition: all 0.3s ease-in-out; 
}

.result-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    transform: translateY(-2px); 
}

.section-result {
    font-size: 1rem; 
    color: #495057;
    margin-bottom: 0.5rem; 
}

.section-result a {
    color: #007bff;
    text-decoration: none; 
    font-weight: 500; 
}

.section-result a:hover {
    text-decoration: underline; 
    color: #0056b3; 
}
.fields-container {
    max-height: 600px; 
    overflow-y: auto; 
    padding-right: 15px; 
}

.fields-container::-webkit-scrollbar {
    width: 10px;
}

.fields-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.fields-container::-webkit-scrollbar-thumb {
    background: #888;
}

.fields-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.form-check-input {
    margin-right: 10px;
}

.form-control {
    flex-grow: 1; 
}

.custom-input[type="date"] {
    width: 300px; 
    cursor: pointer; 
}

.custom-input[type="date"]::-webkit-inner-spin-button, 
.custom-input[type="date"]::-webkit-clear-button {
    display: none;
}