/* Reusable configuration for all recipe videos */
.recipe-video-embed {
    border: 0;                    /* Replaces the deprecated frameborder */
    border-radius: 12px;         /* Gives it a modern, soft look */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* Adds depth */
    transition: transform 0.3s ease; /* Smooth interaction if you hover */
}

.recipe-video-embed:hover {
    transform: translateY(-2px); /* Lifts slightly when hovered */
}

/* Add this to app/static/css/main.css */
.video-constrain {
    max-width: 720px;
    margin: 2rem auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.adblock-banner {
    background-color: #fff3cd; /* Warm yellow */
    border-bottom: 1px solid #ffeeba;
    color: #856404;
    padding: 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.adblock-banner button {
    background: none;
    border: 1px solid #856404;
    border-radius: 4px;
    margin-left: 15px;
    padding: 2px 8px;
    cursor: pointer;
}