.content {
    height: 600px;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 20px;
}

.detail-section {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.detail-section h3 {
    color: #4f46e5;
    margin-bottom: 10px;
}

.detail-row {
    display: flex;
    margin-bottom: 8px;
}

.detail-label {
    font-weight: 600;
    width: 120px;
    color: #495057;
}

.detail-value {
    flex: 1;
    color: #6c757d;
}

/* Confirmation Check Styles */
.confirmation-check {
    background: #f8f9fa;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: var(--border-width-thick) solid var(--border-grey);
    transition: all 0.3s ease;
    margin: 30px 10px;
}

.confirmation-check.required {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.confirmation-check-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.confirmation-check input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.confirmation-check label {
    font-size: 16px;
    line-height: 1.5;
    color: #495057;
    cursor: pointer;
    flex: 1;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.action-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.confirm-btn {
    background: #4f46e5;
    color: white;
}

.confirm-btn:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #4f46e5;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-indicator.visible {
    opacity: 1;
    visibility: visible;
}

.test-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.test-btn {
    padding: 10px 20px;
    background: #f8f9fa;
    color: #495057;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.test-btn:hover {
    background: #e9ecef;
}

@media (max-width: 480px) {
    .confirmation-check-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .action-buttons, .test-buttons {
        flex-direction: column;
    }
}