﻿/* General Info Box */
.info-box {
    background-color: #f8fafc; /* light slate background */
    color: #1f2937; /* dark slate text */
    border: 1px solid #e2e8f0; /* subtle border */
    border-radius: 12px; /* rounded corners */
    padding: 16px; /* internal spacing */
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04); /* subtle shadow */
    margin-top: 16px; /* spacing above the box */
}

    /* Strong text for emphasis */
    .info-box strong {
        display: block;
        font-size: 16px;
        margin-bottom: 8px;
        color: #0f172a; /* darker text for heading */
    }
