/* TubeStream Custom Styles */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
}

.container {
    flex: 1;
}

.card {
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

footer {
    margin-top: auto;
}

.card h2, .card h1 {
    font-size: 3rem;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.3rem;
}

.badge {
    font-size: 0.85rem;
}

.table {
    background-color: white;
}

.alert {
    border-radius: 8px;
}
