/*Recipe templates*/
.recipespn-recipe-wrapper{
    padding:50px;
    max-width:1200px;
    margin:auto;
}

/*Featured image wrapper - full width on top*/
.recipespn-featured-image-wrapper{
    width: 100%;
}

.recipespn-featured-image-wrapper img{
    width: 100%;
    height: auto;
    display: block;
}

/*Featured image styling - prevent overflow*/
.recipespn-featured-image{
    max-width: 100%;
    height: auto;
    width: 100%;
    object-fit: cover;
}

/*Images row - horizontal layout for additional images and video*/
.recipespn-images-row{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.recipespn-image-frame{
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    aspect-ratio: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipespn-image-frame img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.recipespn-video-frame{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 10px;
}

.recipespn-video-frame .recipespn-video{
    width: 100%;
    text-align: center;
}

.recipespn-video-frame .recipespn-video h2{
    font-size: 14px;
    margin-bottom: 10px;
}

.recipespn-video-frame .recipespn-video-wrapper{
    display: flex;
    justify-content: center;
}

/*Video wrapper styling*/
.recipespn-video-wrapper{
    max-width: 100%;
}

.recipespn-video-wrapper .recipespn-btn{
    display: inline-block;
}

/*Ingredient checkbox styling*/
.recipespn-ingredient-checkbox {
    transition: color 0.3s ease;
    pointer-events: auto !important;
    cursor: pointer !important;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.recipespn-ingredient-checkbox:hover {
    opacity: 0.8;
}

.recipespn-ingredient-checkbox.recipespn-checked {
    color: #4CAF50 !important;
}
#recipespn-popup-player{
    max-width:800px;
}
.recipespn-bordered{
    border:4px solid;
}
.recipespn-icon-new{
    font-size:225px!important;
    padding:50px 0;
}

/* Timer icon blinking animation */
.recipespn-player-timer-icon.timing {
    animation: recipespn-timer-blink 1s infinite;
}

@keyframes recipespn-timer-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}