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

.container {
    flex: 1;
}

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

.card {
    border: none;
    border-radius: 12px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
}

.card-footer {
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.badge {
    font-weight: 500;
    font-size: 0.75rem;
}

.recipe-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

h2 {
    font-weight: 700;
    color: #212529;
}

.footer {
    margin-top: auto;
}
