.rat-test-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    font-family: Arial, sans-serif;
}

.rat-test-header {
    background: #2d5016;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.rat-test-title {
	color: white !important;
    font-weight: 700 !important;
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}



.rat-test-subtitle {
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rat-progress-section {
    margin-bottom: 40px;
    position: relative;
}

.rat-progress-bar {
    width: 100%;
    height: 60px;
    background: #f0f0f0;
    border-radius: 4px;
    position: relative;
    overflow: visible;
    margin-bottom: 40px;
    margin-top: 30px;
}

.rat-progress-fill {
    height: 100%;
    background: #FFD700;
    transition: width 0.5s ease, background-color 0.5s ease;
    border-radius: 4px;
    position: relative;
}

.rat-progress-markers {
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 5px;
    pointer-events: none;
}

.rat-marker {
    font-weight: bold;
    font-size: 14px;
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 3px;
    white-space: nowrap;
}

.rat-marker[data-percent="0"] {
    margin-left: 0;
}

.rat-marker[data-percent="100"] {
    margin-right: 0;
}

.rat-caution-indicator {
    text-align: center;
    margin-top: 10px;
}

.rat-caution-sign {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 5px;
}

.rat-caution-text {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rat-questions-wrapper {
    margin-bottom: 40px;
    min-height: 300px;
}

.rat-question-block {
    padding: 20px 0;
}

.rat-question-text {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rat-answers-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.rat-answer-button {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 20px 30px;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    background: #e0e0e0;
    border: 2px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rat-answer-button:hover {
    background: #d0d0d0;
    border-color: #999;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.rat-answer-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rat-skip-container {
    text-align: right;
    margin-top: 20px;
}

.rat-skip-button {
    background: transparent;
    border: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    text-transform: lowercase;
    padding: 5px 10px;
}

.rat-skip-button:hover {
    color: #000;
    text-decoration: underline;
}

.rat-hotline-section {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.rat-hotline-button {
    background: #2d5016;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.rat-hotline-button:hover {
    background: #3a6b1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.rat-phone-icon {
    font-size: 20px;
}

.rat-test-complete-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    display: none;
    position: relative;
    z-index: 1000;
}

.rat-test-complete {
    text-align: center;
    padding: 60px 40px;
    background: #e8e8e8;
    border-radius: 12px;
    margin: 0 auto;
    max-width: 600px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rat-test-complete h2 {
    font-size: 36px;
    color: #2d5016;
    margin-bottom: 20px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.rat-score-label {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.rat-score-value {
    margin-bottom: 20px;
}

#rat-final-score {
    font-size: 72px;
    color: #2d5016;
    font-weight: bold;
    display: inline-block;
    transition: color 0.3s ease;
}

.rat-thank-you {
    font-size: 18px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive design */
@media (max-width: 768px) {
    .rat-test-title {
        font-size: 28px;
    }
    
    .rat-test-subtitle {
        font-size: 14px;
    }
    
    .rat-question-text {
        font-size: 20px;
    }
    
    .rat-answer-button {
        min-width: 100%;
        max-width: 100%;
    }
    
    .rat-answers-container {
        flex-direction: column;
    }
}

