@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  font-family: "Poppins", sans-serif;
}

/* Timeline Table Styles */
.timeline-monthly-table {
    border: 3px solid #e3f2fd;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    margin: 30px 0;
}

.timeline-monthly-table th,
.timeline-monthly-table td {
    border: 2px solid #e0e0e0;
    padding: 35px 25px;
    vertical-align: middle;
    min-height: 80px;
}

.month-header {
    background: linear-gradient(135deg, #26a69a, #00897b);
    color: white;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 25px 20px;
}

/* Custom Phase Badge Styles */
.phase-badge {
    display: inline-block;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    min-width: 140px;
}

.phase-badge::before {
    content: "•";
    color: white;
    margin-right: 12px;
    font-weight: bold;
    font-size: 18px;
}

.phase-registration {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.phase-verification {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    color: white;
}

.phase-competition {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
    color: white;
}

.phase-final {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
    color: white;
}

.timeline-monthly-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.timeline-monthly-table tbody tr:hover {
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
}

/* Responsive adjustments for larger table */
@media (max-width: 768px) {
    .timeline-monthly-table th,
    .timeline-monthly-table td {
        padding: 25px 15px;
    }
    
    .month-header {
        font-size: 16px;
        padding: 20px 15px;
    }
    
    .phase-badge {
        font-size: 14px;
        padding: 12px 20px;
        min-width: 120px;
    }
}