body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.navbar-brand {
    font-size: 1.5rem;
}

.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
}

.dashboard-card {
    border-left: 4px solid var(--bs-primary);
}

.pricing-card.featured {
    border-color: var(--bs-primary);
    border-width: 2px;
}

#theme-toggle {
    border: none;
    background: none;
}