/**
 * Custom CSS for YouTube Watch Reward
 */

/* Sticky footer layout */
body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main.main-content {
    flex: 1 0 auto;
}

/* Navbar customizations */
nav .brand-logo {
    font-weight: 600;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

nav .brand-logo i {
    margin-right: 10px;
}

/* Card aesthetics */
.card {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-panel {
    border-radius: 8px;
}

/* Status badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-badge i {
    font-size: 1rem;
    margin-right: 6px;
}
