/**
 * Workout details drawer (from planner-new-ui/workout-details)
 * All classes prefixed with wd- to avoid conflicts with planner.css and workout-details-*
 */

.wd-overlay {
    overflow: hidden;
}

.wd-container {
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: end;
    padding: 0 80px;
}

@media (max-width: 991px) {
    .wd-container {
        max-width: 100%;
        padding-left: 20px;
    }
}

.wd-card {
    border-radius: 8px 0 0 8px;
    background-color: rgba(255, 255, 255, 1);
    position: relative;
    display: flex;
    min-width: 359px;
    min-height: 776px;
    width: 800px;
    max-width: 100%;
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
    justify-content: start;
}

@media (max-width: 991px) {
    .wd-card {
        margin-right: -14px;
    }
}

/* Workout detail header - match .drawer-header from recipe-planner-drawer */
.recipe-planner-drawer .drawer-workout-detail-view .wd-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    width: 100%;
    align-items: center;
    gap: 40px 100px;
    color: #000;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px 16px;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-header-content {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    align-items: stretch;
    width: 252px;
    margin: auto 0;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-planner-title {
    font-family:
        Montserrat,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-date-time-info {
    display: flex;
    margin-top: 4px;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 400;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-datetime {
    margin: auto 0;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-edit-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: auto 0;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-edit-icon {
    aspect-ratio: 1;
    object-fit: contain;
    width: 16px;
    flex-shrink: 0;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-calendar-icon {
    aspect-ratio: 1;
    object-fit: contain;
    width: 16px;
    flex-shrink: 0;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-close-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: auto 0;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-close-icon {
    aspect-ratio: 1;
    object-fit: contain;
    width: 24px;
    flex-shrink: 0;
}

/* Workout Details back button - matches recipe-info-back-btn behavior */
.recipe-planner-drawer .drawer-workout-detail-view .wd-info-section.wd-info-back-btn {
    display: flex;
    margin-top: 20px;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    width: 100%;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-info-section.wd-info-back-btn:hover {
    opacity: 0.8;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-info-back-btn .wd-info-icon-wrapper {
    border-radius: 18px;
    background-color: rgba(237, 237, 237, 1);
    display: flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-info-back-btn .wd-info-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-info-back-btn .wd-info-label {
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    font-weight: 400;
}

.wd-content {
    z-index: 0;
    margin-top: 20px;
    min-height: 638px;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 991px) {
    .wd-content {
        max-width: 100%;
    }
}

.wd-main-card {
    position: relative;
    width: 100%;
    padding: 0 16px;
}

@media (max-width: 991px) {
    .wd-main-card {
        max-width: 100%;
    }
}

/* Workout image container - Rectangle 768×432 with gradient overlay */
.recipe-planner-drawer .drawer-workout-detail-view .wd-image-container {
    position: relative;
    width: 100%;
    max-width: 768px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    flex: none;
    align-self: stretch;
    flex-grow: 0;
    z-index: 0;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(321.34deg, rgba(0, 0, 0, 0) 59.26%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-image-container .wd-rating-badge {
    left: 10px;
    right: auto;
    z-index: 2;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-image-container .wd-play-button {
    z-index: 2;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-image-container .wd-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    display: block;
}

/* Fallback for contexts outside drawer */
.wd-image-container {
    position: relative;
}

.wd-image {
    aspect-ratio: 1.78;
    object-fit: contain;
    object-position: center;
    width: 100%;
    border-radius: 8px;
    z-index: 0;
}

@media (max-width: 991px) {
    .wd-image {
        max-width: 100%;
    }
}

.wd-rating-badge {
    border-radius: 64px;
    background-color: rgba(255, 255, 255, 1);
    align-self: start;
    position: absolute;
    z-index: 0;
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--Text, #10152c);
    white-space: nowrap;
    justify-content: center;
    right: 75px;
    top: 10px;
    padding: 4px 8px;
    font:
        600 12px Montserrat,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
}

@media (max-width: 991px) {
    .wd-rating-badge {
        white-space: initial;
    }
}

/* Star icon - gold star shape (visible in rating badge) */
.recipe-planner-drawer .drawer-workout-detail-view .wd-rating-badge .wd-star-icon,
.wd-star-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    background-color: #ffd700;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.wd-rating-value {
    color: var(--Text, #10152c);
    align-self: stretch;
    margin: auto 0;
}

.wd-play-button {
    border-radius: 200px;
    position: absolute;
    z-index: 0;
    display: flex;
    min-height: 36px;
    width: 36px;
    align-items: center;
    overflow: hidden;
    justify-content: center;
    height: 36px;
    right: 10px;
    top: 10px;
    padding: 0 12px;
    border: none;
    cursor: pointer;
}

.wd-play-button:hover {
    opacity: 0.9;
}

.wd-play-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 36px;
    height: 36px;
}

/* Video player overlay - shown when play is clicked */
.wd-video-player-wrapper {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: #000;
    border-radius: 8px;
    display: none;
}

.wd-video-player-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.wd-video-hidden {
    display: none !important;
}

/* When video is playing, hide thumbnail and play button */
.wd-image-container.wd-is-playing .wd-image,
.wd-image-container.wd-is-playing .wd-rating-badge,
.wd-image-container.wd-is-playing .wd-play-button {
    display: none !important;
}

.wd-image-container.wd-is-playing .wd-video-player-wrapper {
    display: block !important;
}

.wd-details-content {
    z-index: 0;
    display: flex;
    margin-top: 12px;
    width: 100%;
    align-items: start;
    gap: 40px 10px;
    font-family:
        Montserrat,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 8px;
}

@media (max-width: 991px) {
    .wd-details-content {
        max-width: 100%;
    }
}

.wd-info-main {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
}

.wd-title {
    color: rgba(16, 21, 44, 1);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.wd-tags {
    align-self: start;
    display: flex;
    margin-top: 8px;
    align-items: start;
    gap: 8px;
    font-weight: 500;
    justify-content: start;
}

.wd-coach-tag {
    border-radius: 17px;
    background-color: rgba(91, 176, 189, 0.3);
    display: flex;
    min-height: 30px;
    align-items: center;
    gap: 4px;
    overflow: hidden;
    font-size: 11px;
    color: rgba(0, 0, 0, 1);
    justify-content: start;
    padding: 4px 12px 4px 4px;
    width: max-content;
}

.wd-coach-info {
    align-self: stretch;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: start;
    margin: auto 0;
}

.wd-coach-avatar-wrapper {
    width: 23px;
    height: 23px;
    flex-shrink: 0;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wd-coach-avatar {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    align-self: stretch;
    flex-shrink: 0;
    margin: auto 0;
}

.wd-coach-avatar-initials {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background-color: rgba(91, 176, 189, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    flex-shrink: 0;
}

.wd-coach-name {
    align-self: stretch;
    margin: auto 0;
}

.wd-duration-tag {
    border-radius: 17px;
    background-color: rgba(91, 176, 189, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
    overflow: hidden;
    font-size: 11px;
    color: rgba(0, 0, 0, 1);
    justify-content: start;
    padding: 4px 12px;
}

.wd-duration-info {
    align-self: stretch;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: start;
    margin: auto 0;
}

.wd-clock-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 14px;
    align-self: stretch;
    flex-shrink: 0;
    margin: auto 0;
}

.wd-duration-text {
    align-self: stretch;
    margin: auto 0;
}

.wd-difficulty-tag {
    border-radius: 17px;
    background-color: rgba(255, 214, 187, 1);
    display: flex;
    align-items: center;
    gap: 4px;
    overflow: hidden;
    white-space: nowrap;
    justify-content: start;
    padding: 4px 12px;
}

@media (max-width: 991px) {
    .wd-difficulty-tag {
        white-space: initial;
    }
}

.wd-fire-emoji {
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    align-self: stretch;
    margin: auto 0;
}

.wd-difficulty-text {
    color: rgba(0, 0, 0, 1);
    font-size: 11px;
    align-self: stretch;
    margin: auto 0;
}

.wd-level-tag {
    border-radius: 17px;
    background-color: rgba(187, 254, 255, 1);
    display: flex;
    align-items: center;
    gap: 4px;
    overflow: hidden;
    white-space: nowrap;
    justify-content: start;
    padding: 4px 12px;
}

@media (max-width: 991px) {
    .wd-level-tag {
        white-space: initial;
    }
}

.wd-muscle-emoji {
    color: rgba(255, 255, 255, 1);
    font-size: 12px;
    align-self: stretch;
    margin: auto 0;
}

.wd-level-text {
    color: rgba(0, 0, 0, 1);
    font-size: 11px;
    align-self: stretch;
    margin: auto 0;
}

.wd-actions {
    display: flex;
    min-width: 240px;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    justify-content: start;
}

.wd-favorite-action-icon,
.wd-recommend-action-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 30px;
    height: 30px;
    border-radius: 40px;
    align-self: stretch;
    flex-shrink: 0;
    margin: auto 0;
    cursor: pointer;
}

/* Add to the Planner button - Component 243 */
.recipe-planner-drawer .drawer-workout-detail-view .wd-add-to-planner-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px 12px;
    gap: 4px;
    min-width: 179px;
    height: 32px;
    background: #5bb0bd;
    border-radius: 17px;
    flex: none;
    flex-grow: 0;
    border: none;
    cursor: pointer;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-add-to-planner-button .wd-add-icon {
    width: 16px;
    height: 16px;
    flex: none;
    flex-grow: 0;
    object-fit: contain;
}

.recipe-planner-drawer .drawer-workout-detail-view .wd-add-to-planner-button .wd-add-button-text {
    font-family:
        'Montserrat',
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #ffffff;
    flex: none;
    flex-grow: 0;
}

.wd-additional-info {
    display: flex;
    margin-top: 12px;
    width: 100%;
    align-items: stretch;
    gap: 10px;
    font-family:
        Montserrat,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    color: rgba(0, 0, 0, 1);
    font-weight: 500;
    justify-content: start;
    flex-wrap: wrap;
    padding: 0 16px;
}

@media (max-width: 991px) {
    .wd-additional-info {
        max-width: 100%;
    }
}

/* Equipment section - Frame 1618875326 */
.wd-equipment-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 12px;
    gap: 8px;
    width: 250px;
    min-height: 112px;
    background: #f0f5ff;
    border-radius: 4px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.wd-equipment-section .wd-section-title {
    width: 79px;
    height: 12px;
    font-family:
        'Montserrat',
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.wd-equipment-section .wd-equipment-list {
    width: 226px;
    min-height: 76px;
    font-family:
        'Montserrat',
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 19px;
    color: #000000;
    margin: 0;
    padding-left: 1.2em;
    list-style-type: disc;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

.wd-equipment-section .wd-equipment-list li {
    margin-bottom: 4px;
}

.wd-equipment-section .wd-equipment-list li:last-child {
    margin-bottom: 0;
}

/* Shared section title (playlist etc.) - keep base for non-equipment sections */
.wd-section-title {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.wd-playlist-section {
    border-radius: 4px;
    background-color: rgba(240, 245, 255, 1);
    min-width: 240px;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    padding: 8px 12px;
}

@media (max-width: 991px) {
    .wd-playlist-section {
        max-width: 100%;
    }
}

.wd-playlist-list {
    font-size: 12px;
    line-height: 19px;
    margin-top: 8px;
}

@media (max-width: 991px) {
    .wd-playlist-list {
        max-width: 100%;
    }
}

/* ==========================================
 * Workout Event Details Overlay
 * Shown when user clicks on a workout event in the planner calendar.
 * Matches .add-item-drawer-overlay (excludes sidebar and header from dimming).
 * ========================================== */
/* Overlay top is set dynamically via JS to align with the bottom of .bannerEval */
/* Overlay left matches sidebar width (excludes sidebar from dimming); uses same var as #sideBar */

.workout-event-details-overlay {
    --add-item-drawer-overlay-left: var(--layout2-sidebar-width, 265px);
    position: fixed;
    top: var(--add-item-drawer-overlay-top, 0px);
    left: var(--add-item-drawer-overlay-left);
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: stretch;
    z-index: 10001;
    overflow: hidden;
}

@media (max-width: 991px) {
    .workout-event-details-overlay {
        --add-item-drawer-overlay-left: 0;
        padding: 0 20px;
    }
}

.workout-event-details-drawer {
    border-radius: 8px 0 0 8px;
    background-color: #fff;
    display: flex;
    flex: 1;
    min-width: 359px;
    min-height: 0;
    width: 800px;
    height: 100%;
    max-width: 100%;
    max-height: 100vh;
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
    justify-content: flex-start;
    padding-top: 16px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}

.workout-event-details-drawer .drawer-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 40px 100px;
    color: #000;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px 16px;
}

.workout-event-details-drawer .drawer-header-content {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    align-items: stretch;
    width: 252px;
    margin: auto 0;
}

.workout-event-details-drawer .drawer-planner-title {
    font-family:
        Montserrat,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.workout-event-details-drawer .drawer-date-time-info {
    display: flex;
    margin-top: 4px;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 400;
}

.workout-event-details-drawer .drawer-calendar-icon {
    aspect-ratio: 1;
    object-fit: contain;
    width: 16px;
    flex-shrink: 0;
}

.workout-event-details-drawer .drawer-datetime {
    margin: auto 0;
}

.workout-event-details-drawer .drawer-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.workout-event-details-drawer .weo-close-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: auto 0;
}

.workout-event-details-drawer .weo-close-icon {
    aspect-ratio: 1;
    object-fit: contain;
    width: 24px;
    flex-shrink: 0;
}

.workout-event-details-drawer .weo-scroll-content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 0 0 24px;
}

.workout-event-details-drawer .weo-card {
    min-height: auto;
}

.workout-event-details-drawer .wc-options {
    margin-left: 16px;
    margin-right: 16px;
}

.workout-event-details-drawer .wd-actions {
    min-width: unset;
}

.workout-event-details-drawer .weo-info-back-btn {
    display: flex;
    margin-top: 20px;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    width: 100%;
}

.workout-event-details-drawer .weo-info-back-btn:hover {
    opacity: 0.8;
}

.workout-event-details-drawer .weo-info-back-btn .wd-info-icon-wrapper {
    border-radius: 18px;
    background-color: rgba(237, 237, 237, 1);
    display: flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
}

.workout-event-details-drawer .weo-info-back-btn .wd-info-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.workout-event-details-drawer .weo-info-back-btn .wd-info-label {
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    font-weight: 400;
}

.workout-event-details-drawer .weo-image-container {
    position: relative;
    width: 100%;
    max-width: 768px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    flex: none;
    align-self: stretch;
    flex-grow: 0;
    z-index: 0;
}

.workout-event-details-drawer .weo-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(321.34deg, rgba(0, 0, 0, 0) 59.26%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

.workout-event-details-drawer .weo-image-container .wd-rating-badge {
    left: 10px;
    right: auto;
    z-index: 2;
}

.workout-event-details-drawer .weo-image-container .wd-play-button {
    z-index: 2;
}

.workout-event-details-drawer .weo-image-container .wd-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    display: block;
}

.workout-event-details-drawer .weo-delete-btn {
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    margin-left: auto;
    flex: none;
    order: 2;
    flex-grow: 0;
    background: #ffffff;
    border: 1px solid #ff555d;
    border-radius: 40px;
    cursor: pointer;
    transition:
        background-color 0.2s,
        border-color 0.2s;
}

.workout-event-details-drawer .weo-delete-btn:hover {
    background-color: rgba(255, 85, 93, 0.08);
}

.workout-event-details-drawer .weo-delete-btn .delete-icon {
    position: absolute;
    width: 16px;
    height: 16px;
    left: calc(50% - 16px / 2);
    top: calc(50% - 16px / 2);
    object-fit: contain;
}

.workout-details-loading,
.workout-details-error {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 40px 20px;
    font-family:
        Montserrat,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.workout-details-error {
    color: #d32f2f;
}

/* Inline workout detail view - same pattern as recipe (no overlay, same drawer content area) */
.recipe-planner-drawer .drawer-workout-detail-view {
    display: none;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.recipe-planner-drawer .drawer-workout-detail-view .workout-info-drawer-content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 0 0 24px;
}

.recipe-planner-drawer.drawer-showing-workout .add-item-drawer-list-view {
    display: none !important;
}

.recipe-planner-drawer.drawer-showing-workout .drawer-workout-detail-view {
    display: flex !important;
}

.recipe-planner-drawer.drawer-showing-recipe .drawer-workout-detail-view {
    display: none !important;
}
