.info-box {
    background-color: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
}

.formula-box {
    background-color: #1f2937;
    border: 1px solid #4b5563;
    padding: 1.5rem;
    border-radius: 0.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    color: #d1d5db;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.formula-box .variable {
    color: #93c5fd;
    font-weight: bold;
}

.formula-box .explanation {
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
    color: #9ca3af;
    margin-top: 1rem;
    text-align: left;
}

.interpretation-box {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.interpretation-card {
    flex: 1;
    background-color: rgba(31, 41, 55, 0.3);
    border: 1px solid #374151;
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
}

.interpretation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(60, 130, 240, 0.2), 0 0 15px rgba(60, 130, 240, 0.15);
    border-color: rgba(96, 165, 250, 0.5);
}

.interpretation-card h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.interpretation-card .high-score {
    color: #fca5a5; 
}

.interpretation-card .low-score {
    color: #86efac;
}

.bibliography-section {
    background-color: #111827;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
}

.bibliography-title {
    color: #9abed7;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #3c4c64;
    padding-bottom: 0.5rem;
}

.bibliography-item {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.bibliography-item a {
    color: #60a5fa;
    text-decoration: none;
}

.bibliography-item a:hover {
    text-decoration: underline;
}
