/**
 * Recipe Info view inside Add Item Drawer
 * Scoped to .recipe-planner-drawer .drawer-recipe-detail-view
 * Uses Builder AI icons - does not affect existing drawer styles
 */

/* List view wrapper - ensures layout when visible */
.recipe-planner-drawer .add-item-drawer-list-view {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.recipe-planner-drawer .add-item-drawer-list-view > .recipes-grid.add-item-drawer-content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

/* Recipe card clickable for details */
.recipe-planner-drawer .modal-recipe-card {
    cursor: pointer;
}

.recipe-planner-drawer .drawer-recipe-detail-view {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

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

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-info-section.recipe-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;
}

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

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-info-back-btn .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-recipe-detail-view .recipe-info-back-btn .info-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

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

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-main-content {
    margin-top: 12px;
    width: 100%;
}

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-details-card {
    display: flex;
    width: 100%;
    align-items: start;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-detail-image-container {
    position: relative;
    flex-shrink: 0;
}

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-detail-image {
    aspect-ratio: 1;
    object-fit: cover;
    width: 250px;
    min-width: 240px;
    border-radius: 8px;
}

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-detail-content {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    flex: 1;
    padding: 0 16px;
}

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

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-detail-meta {
    display: flex;
    margin-top: 12px;
    flex-direction: column;
    align-items: start;
    font-size: 12px;
}

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-detail-meta-item:last-child {
    margin-bottom: 0;
}

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-detail-meta-label {
    color: rgba(48, 48, 48, 1);
    font-weight: 400;
}

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-detail-meta-value {
    color: rgba(0, 0, 0, 1);
    font-weight: 500;
}

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-detail-actions {
    display: flex;
    margin-top: 24px;
    align-items: center;
    gap: 8px;
}

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-detail-action-icon {
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    padding: 9px;
    border-radius: 17px;
    object-fit: contain;
    object-position: center;
    cursor: pointer;
}

.recipe-planner-drawer .drawer-recipe-detail-view .add-to-planner-drawer-btn {
    border-radius: 17px;
    background-color: rgba(91, 176, 189, 1);
    display: flex;
    min-height: 32px;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.recipe-planner-drawer .drawer-recipe-detail-view .add-to-planner-drawer-btn:hover {
    background-color: #4a9ba8;
}

.recipe-planner-drawer .drawer-recipe-detail-view .add-to-planner-drawer-btn .add-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-detail-tags {
    margin-top: 24px;
    width: 100%;
}

.recipe-planner-drawer .drawer-recipe-detail-view .tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-detail-tag {
    border-radius: 80px;
    background-color: rgba(245, 245, 245, 1);
    padding: 4px 8px;
    color: #10152c;
    font-size: 10px;
    font-weight: 400;
}

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-details-sections {
    margin-top: 24px;
    width: 100%;
    padding: 0 20px;
}

/* Nutritional Value - expandable, hidden by default */
.recipe-planner-drawer .drawer-recipe-detail-view .nutritional-container {
    border-radius: 4px;
    background-color: rgba(240, 245, 255, 1);
    max-width: 768px;
    padding: 11px 12px;
}

.recipe-planner-drawer .drawer-recipe-detail-view .nutrition-header.nutritional-toggle-btn {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: rgba(0, 0, 0, 1);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    justify-content: space-between;
    flex-wrap: wrap;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.recipe-planner-drawer .drawer-recipe-detail-view .nutrition-title {
    margin: 0;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 1);
}

.recipe-planner-drawer .drawer-recipe-detail-view .nutritional-expand-arrow {
    width: 16px;
    height: 16px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.recipe-planner-drawer .drawer-recipe-detail-view .nutritional-expandable.expanded .nutritional-expand-arrow {
    transform: rotate(180deg);
}

.recipe-planner-drawer .drawer-recipe-detail-view .nutritional-expandable.expanded .nutrition-list {
    display: flex;
}

/* Hidden by default - only show when expanded */
.recipe-planner-drawer .drawer-recipe-detail-view .nutrition-list {
    display: none;
    margin-top: 16px;
    width: 100%;
    align-items: center;
    gap: 8px;
    justify-content: start;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.recipe-planner-drawer .drawer-recipe-detail-view .nutrition-item {
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    flex: 1;
    min-width: 80px;
    padding: 8px;
}

.recipe-planner-drawer .drawer-recipe-detail-view .nutrition-label {
    color: rgba(137, 137, 137, 1);
    font-size: 10px;
    font-weight: 400;
}

.recipe-planner-drawer .drawer-recipe-detail-view .nutrition-value {
    color: #10152c;
    font-size: 12px;
    font-weight: 500;
}

.recipe-planner-drawer .drawer-recipe-detail-view .content-sections {
    display: flex;
    margin-top: 12px;
    gap: 12px;
    flex-wrap: wrap;
}

.recipe-planner-drawer .drawer-recipe-detail-view .ingredients-section,
.recipe-planner-drawer .drawer-recipe-detail-view .directions-section {
    border-radius: 4px;
    background-color: rgba(240, 245, 255, 1);
    min-width: 240px;
    flex: 1;
    padding: 16px 12px;
}

.recipe-planner-drawer .drawer-recipe-detail-view .section-title {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.recipe-planner-drawer .drawer-recipe-detail-view .ingredients-list {
    font-size: 12px;
    font-weight: 400;
    margin-top: 12px;
    line-height: 1.5;
}

.recipe-planner-drawer .drawer-recipe-detail-view .ingredients-list .ingredient-item {
    margin-bottom: 8px;
}

.recipe-planner-drawer .drawer-recipe-detail-view .ingredients-list .ingredient-item:last-child {
    margin-bottom: 0;
}

.recipe-planner-drawer .drawer-recipe-detail-view .directions-content {
    font-size: 12px;
    font-weight: 400;
    margin-top: 12px;
    line-height: 1.5;
}

.recipe-planner-drawer .drawer-recipe-detail-view .step-number {
    font-weight: 700;
    color: rgba(16, 21, 44, 1);
    display: block;
    margin-bottom: 4px;
}

.recipe-planner-drawer .drawer-recipe-detail-view .step-text {
    display: block;
    margin-bottom: 12px;
}

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-detail-image-container .rating-badge {
    border-radius: 64px;
    background-color: #fff;
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    left: 10px;
    top: 10px;
    padding: 4px 20px;
    font-size: 12px;
    font-weight: 600;
    color: #10152c;
    width: 50px;
}

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-detail-image-container .star-icon {
    width: 12px;
    height: 12px;
    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 .drawer-recipe-detail-view .recipe-detail-loading,
.recipe-planner-drawer .drawer-recipe-detail-view .recipe-detail-error,
.recipe-planner-drawer .drawer-workout-detail-view .recipe-detail-loading,
.recipe-planner-drawer .drawer-workout-detail-view .recipe-detail-error {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.recipe-planner-drawer .drawer-recipe-detail-view .recipe-detail-error,
.recipe-planner-drawer .drawer-workout-detail-view .recipe-detail-error {
    color: #e74c3c;
}

/* Hide list view when showing recipe detail */
.recipe-planner-drawer.drawer-showing-recipe .add-item-drawer-list-view {
    display: none !important;
}

.recipe-planner-drawer .drawer-recipe-detail-view {
    display: none;
}

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

/* Recipe Confirm view - shown when user clicks Add from list or recipe detail */
.recipe-planner-drawer .drawer-recipe-confirm-view {
    display: none;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

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

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

.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-drawer-content {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-scrollable {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 20px 20px 20px;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .confirmation-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .confirmation-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .confirmation-back-btn:hover {
    opacity: 0.8;
}

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

.recipe-planner-drawer .drawer-recipe-confirm-view .confirmation-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .confirmation-title {
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    font-weight: 400;
    margin-top: 0px;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-details {
    display: flex;
    margin-top: 20px;
    gap: 12px;
    flex-wrap: wrap;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-image {
    aspect-ratio: 1;
    object-fit: cover;
    width: 250px;
    min-width: 240px;
    border-radius: 8px;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-info {
    flex: 1;
    min-width: 240px;
}

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

.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-timing {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-timing .timing-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-timing .timing-label {
    color: rgba(48, 48, 48, 1);
    font-weight: 400;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-timing .timing-value {
    color: rgba(0, 0, 0, 1);
    font-weight: 500;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    margin-top: 20px;
    gap: 10px;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .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 .drawer-recipe-confirm-view .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 .drawer-recipe-confirm-view .recipe-confirm-option-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 1);
}

.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-repeat-panel {
    margin-top: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-custom-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-custom-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-custom-label {
    width: 35px;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 400;
    color: #000;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-custom-inputs {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-unit-dropdown-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-custom-inputs .repeat-unit-dropdown-wrapper:first-child {
    width: 90px;
    flex: none;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .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: inherit;
    text-align: left;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-unit-trigger:hover {
    background-color: #f8f9fa;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-unit-arrow {
    flex-shrink: 0;
    margin-left: 8px;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .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:
        500 12px/1.6 Montserrat,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    z-index: 100;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-unit-dropdown--open {
    display: flex;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-period-option {
    display: flex;
    width: 100%;
    align-items: center;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-period-option:not(:first-child) {
    margin-top: 6px;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-period-btn {
    color: #000;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-period-btn:hover {
    opacity: 0.8;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-custom-suffix {
    font-size: 12px;
    font-weight: 400;
    color: #000;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-ends-date-row .repeat-custom-label,
.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-ends-occurrences-row .repeat-custom-label {
    width: auto;
    min-width: 70px;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-ends-date-input-wrapper {
    flex: 1;
    min-width: 0;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-ends-occurrences-input-wrapper {
    width: 90px;
    flex: none;
}

/* End date and Occurrences inputs within recipe-confirm-scrollable */
.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-scrollable .repeat-ends-date-input,
.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-scrollable .repeat-ends-occurrences-input,
.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-scrollable .repeat-ends-date-input.flatpickr-input {
    height: 32px;
    border: none;
    padding: 10px;
    font-size: 12px;
    font-weight: 500;
    width: 100%;
}

/* Date input when calendar is open (inline mode: calendar visible) */
.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-scrollable .repeat-ends-date-input-wrapper:has(.flatpickr-calendar.open) .repeat-ends-date-input,
.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-scrollable .repeat-ends-date-input-wrapper:has(.flatpickr-calendar.open) .repeat-ends-date-input.flatpickr-input,
.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-scrollable .repeat-ends-date-input-wrapper:has(.flatpickr-calendar) .repeat-ends-date-input,
.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-scrollable .repeat-ends-date-input-wrapper:has(.flatpickr-calendar) .repeat-ends-date-input.flatpickr-input {
    height: 32px;
    border: none;
    padding: 20px;
    padding-left: 35px;
    font-size: 12px;
    font-weight: 500;
    width: 100%;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-scrollable .repeat-ends-date-input-wrapper {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

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

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-ends-date-input-wrapper[data-recipe-confirm-date-picker="true"] .flatpickr-day.selected,
.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-ends-date-input-wrapper[data-recipe-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;
}

/* Ensure flatpickr calendar appears above drawer overlay (z-index 10000) and time picker (100001) */
.flatpickr-calendar.open {
    z-index: 100002 !important;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-scrollable .repeat-ends-occurrences-input {
    width: 100%;
    max-width: 90px;
    box-sizing: border-box;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-ends-occurrences-input::-webkit-outer-spin-button,
.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-ends-occurrences-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-days-of-week {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4px;
    flex: 1;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .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;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-day-btn:hover {
    border-color: rgba(91, 176, 189, 1);
    color: rgba(91, 176, 189, 1);
}

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

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-weeks-days,
.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-months-row,
.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-years-row {
    display: flex;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-months-inputs,
.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-years-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-months-inputs .repeat-unit-dropdown-wrapper,
.recipe-planner-drawer .drawer-recipe-confirm-view .repeat-years-inputs .repeat-unit-dropdown-wrapper {
    width: 90px;
    flex: none;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-option-header .toggle-switch {
    width: 27px;
    height: 16px;
    flex-shrink: 0;
    background-color: #d1d5db;
    border-radius: 9999px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-option-header .toggle-switch[aria-checked='true'] {
    background-color: #4caf50;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .notify-options-panel {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .notify-options-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4px;
    flex-wrap: wrap;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .notify-option-btn {
    padding: 8px 12px;
    border-radius: 80px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background-color: #fff;
    color: #10152c;
    font-family:
        Montserrat,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .notify-option-btn:hover {
    background-color: #f8f9fa;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .notify-option-btn--selected {
    border: 2px solid #5bb0bd;
    color: #208999;
    font-weight: 600;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .notify-option-btn--selected:hover {
    background-color: #fff;
}

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

.recipe-planner-drawer
    .drawer-recipe-confirm-view
    .recipe-confirm-option-header
    .toggle-switch[aria-checked='true']
    .toggle-indicator {
    transform: translateX(11px);
    background-color: #e8f5e9;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .frequency-options {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .frequency-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 .drawer-recipe-confirm-view .frequency-btn:hover {
    border-color: #9ca3af;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .frequency-btn--selected {
    border: 2px solid rgba(91, 176, 189, 1);
    background-color: #fff;
    color: rgba(32, 137, 153, 1);
    font-weight: 600;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-footer {
    flex-shrink: 0;
    padding: 16px 20px;
    background: #fff;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-primary-btn {
    border-radius: 500px;
    background-color: rgba(91, 176, 189, 1);
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 4px;
    padding: 13px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    font-family: inherit;
}

.recipe-planner-drawer .drawer-recipe-confirm-view .recipe-confirm-primary-btn:hover {
    background-color: rgba(81, 166, 179, 1);
}
