/* Test Container */
.arg-test-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #000000;
}

/* Start Page */
.arg-start-page {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    color: #000000;
}

.arg-start-page h2 {
    color: #000000;
    margin-bottom: 20px;
}

.arg-header {
    text-align: left;
    margin: 30px 0;
    line-height: 1.6;
    color: #000000;
}

.arg-header p, 
.arg-header h1, 
.arg-header h2, 
.arg-header h3, 
.arg-header h4, 
.arg-header h5, 
.arg-header h6 {
    color: #000000 !important;
}

.arg-start-btn {
    padding: 12px 30px;
    font-size: 18px;
    background: #007cba;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.arg-start-btn:hover {
    background: #005a87;
}

/* Questions */
.arg-questions-container {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #000000;
}

.arg-progress {
    color: #000000;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.arg-question-page h3 {
    color: #000000;
    margin-bottom: 25px;
    font-size: 20px;
    line-height: 1.4;
}

.arg-options-list {
    margin: 25px 0;
}

.arg-option {
    display: block;
    margin: 12px 0;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
    color: #000000;
}

.arg-option:hover {
    border-color: #007cba;
    background: #f0f7fc;
}

.arg-option.selected {
    border-color: #007cba;
    background: #007cba;
    color: white;
}

.arg-option-label {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 16px;
    color: inherit;
}

.arg-option-text {
    line-height: 1.5;
    color: inherit;
}

.arg-nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.arg-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.arg-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.arg-btn-primary {
    background: #007cba;
    color: white;
}

.arg-btn-primary:hover:not(:disabled) {
    background: #005a87;
}

.arg-btn-secondary {
    background: #6c757d;
    color: white;
}

.arg-btn-secondary:hover {
    background: #545b62;
}

/* Results */
.arg-result-container {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #000000;
}

.arg-result-page h2 {
    color: #000000;
    margin-bottom: 25px;
    text-align: center;
}

.arg-result-content {
    line-height: 1.7;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #007cba;
    color: #000000;
}

.arg-result-content p,
.arg-result-content h1,
.arg-result-content h2,
.arg-result-content h3,
.arg-result-content h4,
.arg-result-content h5,
.arg-result-content h6,
.arg-result-content div,
.arg-result-content span {
    color: #000000 !important;
}

.arg-email-form {
    margin-top: 30px;
    padding: 20px;
    background: #f0f7fc;
    border-radius: 6px;
    border: 1px solid #007cba;
    color: #000000;
}

.arg-email-form h3 {
    margin-top: 0;
    color: #000000;
}

.arg-email-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    color: #000000;
}

.arg-email-form input:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,124,186,0.2);
}

.arg-success-message {
    padding: 15px;
    background: #d1e7dd;
    border: 1px solid #badbcc;
    border-radius: 4px;
    color: #0f5132;
    margin-top: 20px;
}

/* Loading */
.arg-loading {
    text-align: center;
    padding: 40px;
    color: #000000;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .arg-test-container {
        padding: 10px;
    }
    
    .arg-start-page,
    .arg-questions-container,
    .arg-result-container {
        padding: 20px;
    }
    
    .arg-nav-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .arg-nav-buttons > * {
        width: 100%;
    }
}
