/* India State Chat Room Section */

.states-section {
    background-color: #0f172a;
    padding: 40px 20px;
}

.states-title {
    text-align: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
}

.states-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    max-width: 1100px;
    margin: auto;
}

.state-link {
    display: block;
    text-decoration: none;
    background-color: #1e293b;
    color: #ffffff;
    padding: 14px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.state-link:hover {
    background-color: #334155;
}