/* Scholarship Page Specific CSS */

.page-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-bottom: 20px;
}

.page-title h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.page-title p {
    font-size: 14px;
    opacity: 0.9;
}

/* Status Badge Styling - Same as home page */
.status-badge-home {
    display: inline-block;
    font-size: 0.7rem;
    margin-left: 6px;
    font-weight: 800;
    line-height: 1;
}

.status-badge-home.live {
    color: #10b981;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.status-badge-home.ongoing {
    color: #8b5cf6;
    animation: pulse-dot 1.2s ease-in-out infinite;
}

.status-badge-home.upcoming {
    color: #f59e0b;
    animation: bounce-arrow 1.5s ease-in-out infinite;
}

.status-badge-home.coming-soon {
    color: #3b82f6;
    font-size: 0.65rem;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.4;
        transform: scale(1.2);
    }
}

@keyframes bounce-arrow {
    0%, 100% { 
        transform: translateY(0);
    }
    50% { 
        transform: translateY(-2px);
    }
}