
/* Mass Timings page specific styles */

.mass-timings-wrapper {
    display: flex;
    gap: 40px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.timing-table {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.timing-table h3 {
    background-color: #9A4B1D;;     
    color: black;
    padding: 20px;
    margin: 0;
    text-align: center;
    font-size: 1.4rem;
}

.timing-table table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid black; /* NEW: Black border */
}

.timing-table table thead th {
    background-color: #9A4B1D; /* Brown */
    color: white;              /* White text */
    font-size: 1.2rem;         /* Larger font */
    font-weight: bold;
    padding: 15px;
    border: 1px solid black;   /* Add black border between headers */
}


.timing-table table tr {
    border-bottom: 1px solid #eee;
}

.timing-table table tr:last-child {
    border-bottom: none;
}


.timing-table table td {
    padding: 15px 20px;
    font-size: 1rem;
    color: black;               /* Make all cell text black */
    border: 1px solid black;    /* Add black border to all cells */
}

.timing-table table td:first-child {
    font-weight: bold;
}

/* .timing-table table td:first-child {
    font-weight: bold;
    color: 	black;
    background-color: white;
    width: 40%;
}

.timing-table table td:last-child {
    color: #555;
} */

/* Responsive Design */
@media (max-width: 768px) {
    .mass-timings-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .timing-table h3 {
        font-size: 1.2rem;
        padding: 15px;
    }
    
    .timing-table table td {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .timing-table table td:first-child {
        width: 35%;
    }
    
    .timing-table table td {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}
.footer-bottom {
        width: 100%;
        text-align: center;
    }

/* Table */
.mass-timings-table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 1.1rem;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mass-timings-table th {
    background-color: #9A4B1D;
    color: white;
    padding: 15px;
    font-weight: bold;
    text-align: center;
    font-size: 1.1rem;
}

.mass-timings-table td {
    padding: 15px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #000;
}
