/* Document Upload Styling */
.document-upload-container {
    width: 100%;
    margin-bottom: 20px;
}

.document-checklist-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.section-header {
    background-color: #EBF5FB;
    color: #1a73e8;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    border: 1px solid #1a73e8;
}

.agent-type-selection {
    margin-bottom: 20px;
}

.agent-type-selection label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-group label {
    display: flex;
    align-items: center;
}

.radio-group input[type="radio"] {
    margin-right: 8px;
}

.document-section {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.document-section h3 {
    margin-bottom: 15px;
    color: #1a73e8;
    border-bottom: 2px solid #1a73e8;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #666;
}

.form-input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.upload-instructions {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 15px;
    border-radius: 4px;
}

.upload-instructions ul {
    padding-left: 20px;
    margin-top: 10px;
}

.upload-instructions li {
    margin-bottom: 5px;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn-prev,
.btn-next {
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-prev {
    background-color: #6c757d;
    color: white;
    border: none;
}

.btn-next {
    background-color: #1a73e8;
    color: white;
    border: none;
}

.btn-prev:hover,
.btn-next:hover {
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
}