/**
 * Workout list UI inside Add Item drawer - matches planner-new-ui/workout-planner.css
 * All classes prefixed with drawer-workout- to avoid conflicts with planner.css
 * (e.g. .workout-card, .workout-duration, .workout-title, .star-icon, .rating-badge, .add-button)
 */

.recipe-planner-drawer .category-pane-workouts {
    display: none;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.recipe-planner-drawer .category-pane-workouts.is-active {
    display: flex;
}

/* Workout filter row */
.recipe-planner-drawer .category-pane-workouts .drawer-workout-filter-section {
    overflow-x: auto;
    display: flex;
    margin-top: 12px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
    padding-top: 8px;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-filter-tabs {
    display: flex;
    padding-top: 8px;
    align-items: stretch;
    color: #000;
    white-space: nowrap;
    text-align: center;
    justify-content: start;
    font:
        300 12px Montserrat,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-filter-tab {
    background: none;
    border: none;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    padding: 0 8px 8px;
    font:
        300 12px Montserrat,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    color: #000;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-filter-tab.active {
    border-color: #000;
    border-bottom-width: 1px;
    font-weight: 600;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-search-btn {
    border-radius: 8px;
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    padding: 13px 12px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    background: none;
    cursor: pointer;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-search-btn .drawer-workout-search-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Loading state in workout drawer grid */
.recipe-planner-drawer .category-pane-workouts .drawer-workout-loading,
.recipe-planner-drawer .category-pane-workouts .drawer-workout-grid .drawer-loading {
    color: #10152c;
    font-size: 14px;
}

/* Sentinel for infinite scroll in workout drawer (min height so IntersectionObserver reliably fires) */
.recipe-planner-drawer .category-pane-workouts .drawer-workout-infinite-sentinel {
    min-height: 20px;
    height: 20px;
    width: 100%;
    visibility: hidden;
    pointer-events: none;
}

/* Workout grid - two columns (same grid layout as recipes for empty-state centering) */
.recipe-planner-drawer .category-pane-workouts .drawer-workout-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 12px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    align-items: start;
    gap: 16px;
    padding: 0 16px 24px;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-column {
    min-width: 0;
    min-height: 0;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    position: relative;
    aspect-ratio: 1.781;
    min-height: 210px;
    width: 100%;
    max-width: 374px;
    padding: 12px;
    margin-bottom: 16px;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-card-wide {
    aspect-ratio: 3.667;
    padding: 12px 12px 66px;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px;
    gap: 33px;
    border-radius: 8px;
    /* Gradient top and bottom so text and buttons are visible over the image */
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0) 22%,
        rgba(0, 0, 0, 0) 69.05%,
        #000000 100%
    );
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-header {
    display: flex;
    width: 100%;
    align-items: start;
    justify-content: space-between;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-card .drawer-workout-rating-badge {
    border-radius: 64px;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 4px 6px;
    font:
        600 12px Montserrat,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    color: #10152c;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-card .drawer-workout-star {
    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%);
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-card .drawer-workout-rating-text {
    margin: auto 0;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-avatars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-avatar {
    width: 24px;
    height: 24px;
    border-radius: 14px;
    object-fit: cover;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-action-icon {
    /* Round white background (Component 260) */
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 17px;
    padding: 5px;
    box-sizing: border-box;
    object-fit: contain;
    cursor: pointer;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-action-icon.drawer-workout-action-favorite {
    opacity: 1;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-action-icon[data-action='favorite'].favorited {
    background: #e2676c;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-action-icon[data-action='add-to-recommend'].recommended {
    background: #5bb0bd;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-footer {
    display: flex;
    width: 100%;
    align-items: end;
    justify-content: space-between;
    font-family:
        Montserrat,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    color: #fff;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-info {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    color: #fff;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-duration {
    display: flex;
    margin-top: 6px;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 400;
    color: #fff;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-duration-icon {
    width: 12px;
    height: 12px;
    object-fit: contain;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-card .drawer-workout-add-btn {
    border-radius: 17px;
    background-color: #5bb0bd;
    display: flex;
    min-height: 24px;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
}

.recipe-planner-drawer .category-pane-workouts .drawer-workout-card .drawer-workout-add-icon {
    width: 12px;
    height: 12px;
    object-fit: contain;
}

/* When Workouts tab is active: hide recipe search, filter tabs, and recipes grid */
.recipe-planner-drawer .add-item-drawer-list-view.category-workouts .category-pane-recipes {
    display: none !important;
}

.recipe-planner-drawer .add-item-drawer-list-view.category-workouts .add-item-drawer-search,
.recipe-planner-drawer .add-item-drawer-list-view.category-workouts .add-item-drawer-filter-tabs {
    display: none !important;
}

.recipe-planner-drawer .add-item-drawer-list-view.category-recipes .category-pane-workouts {
    display: none !important;
}

.recipe-planner-drawer .add-item-drawer-list-view.category-recipes .category-pane-workouts.is-active {
    display: none !important;
}

.recipe-planner-drawer .add-item-drawer-list-view.category-workouts .category-pane-workouts.is-active {
    display: flex !important;
}

/* When Notes tab is active: hide recipe search, filter tabs, recipes grid, and workouts */
.recipe-planner-drawer .add-item-drawer-list-view.category-notes .category-pane-recipes,
.recipe-planner-drawer .add-item-drawer-list-view.category-notes .category-pane-workouts {
    display: none !important;
}

.recipe-planner-drawer .add-item-drawer-list-view.category-notes .add-item-drawer-search,
.recipe-planner-drawer .add-item-drawer-list-view.category-notes .add-item-drawer-filter-tabs {
    display: none !important;
}

.recipe-planner-drawer .add-item-drawer-list-view .category-pane-notes {
    display: none !important;
}

.recipe-planner-drawer .add-item-drawer-list-view.category-notes .category-pane-notes.is-active {
    display: flex !important;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    padding: 0;
}

/* Scrollable note form content - footer stays static at bottom like recipe/workout confirm */
.recipe-planner-drawer .category-pane-notes .note-scrollable {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 20px;
}

.recipe-planner-drawer .category-pane-notes .note-confirm-footer {
    flex-shrink: 0;
    padding: 16px 20px;
    background: #fff;
    margin-top: 0;
}

/* Note form inputs - Frame 1618875374 design specs (match event-header/note content area) */
.recipe-planner-drawer .category-pane-notes .drawer-note-form .form-input.modal-note-title-input,
.recipe-planner-drawer .category-pane-notes .drawer-note-form .form-textarea.modal-note-description-textarea {
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
    min-height: 60px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    font-family:
        'Montserrat',
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.recipe-planner-drawer .category-pane-notes .drawer-note-form .form-textarea.modal-note-description-textarea {
    min-height: 203px;
    resize: vertical;
}

.recipe-planner-drawer .category-pane-notes .drawer-note-form .form-input.modal-note-title-input:focus,
.recipe-planner-drawer .category-pane-notes .drawer-note-form .form-textarea.modal-note-description-textarea:focus {
    outline: none;
    border-color: rgba(91, 176, 189, 1);
    box-shadow: 0 0 0 1px rgba(91, 176, 189, 1);
}

.recipe-planner-drawer .category-pane-notes .drawer-note-form .form-input.modal-note-title-input::placeholder,
.recipe-planner-drawer
    .category-pane-notes
    .drawer-note-form
    .form-textarea.modal-note-description-textarea::placeholder {
    font-family:
        'Montserrat',
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: rgba(0, 0, 0, 0.5);
}

.recipe-planner-drawer
    .category-pane-notes
    .drawer-note-form
    .form-input.modal-note-title-input::-webkit-input-placeholder,
.recipe-planner-drawer
    .category-pane-notes
    .drawer-note-form
    .form-textarea.modal-note-description-textarea::-webkit-input-placeholder,
.recipe-planner-drawer .category-pane-notes .drawer-note-form .form-input.modal-note-title-input::-moz-placeholder,
.recipe-planner-drawer
    .category-pane-notes
    .drawer-note-form
    .form-textarea.modal-note-description-textarea::-moz-placeholder {
    font-family:
        'Montserrat',
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

/* Note form - recipe-confirm style options and footer */
.recipe-planner-drawer .category-pane-notes .note-confirm-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    margin-top: 24px;
    gap: 10px;
}

.recipe-planner-drawer .category-pane-notes .recipe-confirm-option-card {
    min-width: 0;
    border-radius: 4px;
    background-color: rgba(240, 245, 255, 1);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.recipe-planner-drawer .category-pane-notes .recipe-confirm-option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    width: 100%;
    text-align: left;
}

.recipe-planner-drawer .category-pane-notes .recipe-confirm-repeat-panel,
.recipe-planner-drawer .category-pane-notes .notify-options-panel {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.recipe-planner-drawer .category-pane-notes .note-confirm-footer .note-edit-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    margin: 0;
}

.recipe-planner-drawer .category-pane-notes .note-add-to-planner-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 20px;
    gap: 4px;
    width: auto;
    height: 42px;
    background: #5bb0bd;
    border-radius: 500px;
    border: none;
    font-family:
        Montserrat,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #ffffff;
    cursor: pointer;
}

.recipe-planner-drawer .category-pane-notes .note-add-to-planner-btn:hover {
    background: #4a9da9;
}

.recipe-planner-drawer .category-pane-notes .frequency-options,
.recipe-planner-drawer .category-pane-notes .notify-options-row {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.recipe-planner-drawer .category-pane-notes .frequency-btn,
.recipe-planner-drawer .category-pane-notes .notify-option-btn {
    padding: 8px 12px;
    border-radius: 80px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background-color: #fff;
    color: #111827;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.recipe-planner-drawer .category-pane-notes .frequency-btn:hover,
.recipe-planner-drawer .category-pane-notes .notify-option-btn:hover {
    background-color: #f8f9fa;
}

.recipe-planner-drawer .category-pane-notes .frequency-btn--selected,
.recipe-planner-drawer .category-pane-notes .notify-option-btn--selected {
    border: 2px solid #5bb0bd;
    color: #208999;
    font-weight: 600;
}

.recipe-planner-drawer .category-pane-notes .recipe-confirm-option-header .toggle-switch {
    position: relative;
    width: 28px;
    height: 16px;
    background: #ccc;
    border-radius: 8px;
    flex-shrink: 0;
}

.recipe-planner-drawer .category-pane-notes .recipe-confirm-option-header .toggle-switch[aria-checked='true'] {
    background: #5bb0bd;
}

.recipe-planner-drawer .category-pane-notes .toggle-indicator {
    position: absolute;
    left: 1.5px;
    top: 1.5px;
    width: 13px;
    height: 13px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.recipe-planner-drawer
    .category-pane-notes
    .recipe-confirm-option-header
    .toggle-switch[aria-checked='true']
    .toggle-indicator {
    transform: translateX(12px);
}

.recipe-planner-drawer .category-pane-notes .recipe-confirm-option-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
}

/* Note repeat custom options - copied from recipe-event-details-drawer */
.recipe-planner-drawer .category-pane-notes .note-repeat-custom-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-custom-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-custom-label {
    width: 35px;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 400;
    color: #000;
    font-family: Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-custom-inputs {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-unit-dropdown-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-custom-inputs .note-repeat-unit-dropdown-wrapper:first-child {
    width: 90px;
    flex: none;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-unit-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    border: none;
    background-color: #fff;
    font-size: 12px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    font-family: Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
    text-align: left;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-unit-display {
    font-size: 12px;
    font-weight: 500;
    color: #000;
    font-family: Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-unit-trigger:hover {
    background-color: #f8f9fa;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-unit-arrow {
    flex-shrink: 0;
    margin-left: 8px;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-unit-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    min-width: 120px;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    flex-direction: column;
    padding: 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    font-family: Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
    z-index: 100;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-unit-dropdown.note-repeat-unit-dropdown--open {
    display: flex;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-period-option {
    display: flex;
    width: 100%;
    align-items: center;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-period-option:not(:first-child) {
    margin-top: 6px;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-period-btn {
    color: #000;
    background: none;
    border: none;
    padding: 0;
    font-size: 12px;
    font-weight: 400;
    font-family: Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-period-btn:hover {
    opacity: 0.8;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-custom-suffix {
    font-size: 12px;
    font-weight: 400;
    color: #000;
    font-family: Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-months-inputs,
.recipe-planner-drawer .category-pane-notes .note-repeat-years-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-days-of-week {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-day-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #595959;
    background-color: #fff;
    color: #6b7280;
    font-size: 12px;
    font-weight: 400;
    font-family: Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-day-btn:hover {
    border-color: rgba(91, 176, 189, 1);
    color: rgba(91, 176, 189, 1);
}

.recipe-planner-drawer .category-pane-notes .note-repeat-day-btn.note-repeat-day-btn--selected {
    background-color: rgba(91, 176, 189, 1);
    color: #fff;
    border-color: rgba(91, 176, 189, 1);
}

/* Note repeat ends date/occurrences rows - matches recipe-event-details */
.recipe-planner-drawer .category-pane-notes .note-repeat-ends-date-row .note-repeat-custom-label,
.recipe-planner-drawer .category-pane-notes .note-repeat-ends-occurrences-row .note-repeat-custom-label {
    width: auto;
    min-width: 70px;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-ends-date-input-wrapper {
    flex: 1;
    min-width: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-ends-occurrences-input-wrapper {
    width: 90px;
    flex: none;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-ends-date-input,
.recipe-planner-drawer .category-pane-notes .note-repeat-ends-occurrences-input {
    font-family: Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 500;
    height: 32px;
    border: none;
    padding: 10px;
    width: 100%;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-ends-date-input-wrapper:has(.flatpickr-calendar.open) .note-repeat-ends-date-input,
.recipe-planner-drawer .category-pane-notes .note-repeat-ends-date-input-wrapper:has(.flatpickr-calendar) .note-repeat-ends-date-input {
    height: 32px;
    border: none;
    padding: 20px;
    padding-left: 35px;
    font-size: 12px;
    font-weight: 500;
    width: 100%;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-ends-occurrences-input::-webkit-outer-spin-button,
.recipe-planner-drawer .category-pane-notes .note-repeat-ends-occurrences-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-ends-date-input-wrapper[data-note-confirm-date-picker="true"] .flatpickr-calendar {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-ends-date-input-wrapper[data-note-confirm-date-picker="true"] .flatpickr-months .flatpickr-month {
    height: 12px;
}

.recipe-planner-drawer .category-pane-notes .note-repeat-ends-date-input-wrapper[data-note-confirm-date-picker="true"] .flatpickr-day.selected,
.recipe-planner-drawer .category-pane-notes .note-repeat-ends-date-input-wrapper[data-note-confirm-date-picker="true"] .flatpickr-day.selected:hover {
    background: rgba(91, 176, 189, 1) !important;
    color: white !important;
    border-color: rgba(91, 176, 189, 1) !important;
}

@media (max-width: 768px) {
    .recipe-planner-drawer .category-pane-workouts .drawer-workout-grid {
        grid-template-columns: 1fr;
    }

    .recipe-planner-drawer .category-pane-notes .note-confirm-options {
        grid-template-columns: 1fr;
    }
}
