
body {
    
    font-family: Arial, sans-serif;
}

.menu-button {
    border-radius: 50px;
    padding: 10px 18px;
    font-weight: 600;
}

.offcanvas {
    width: 260px;
}

.offcanvas-title {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.sidebar-link {
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 12px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.sidebar-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateX(4px);
}

.page-title {
    margin: 20px;
    font-weight: 700;
}
.custom-card {
    border: none;
    border-radius: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-body h2 {
    font-size: 3rem;
}
.media-card {
    transition: all 0.2s ease;
}

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

.media-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.recipe-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
}

.was-validated .invalid-feedback {
    display: block;
}