/**
 * Delete Recipe Confirmation Modal
 * Matches design specs - Pop / Frame 1618875310 etc.
 * Scoped to .recipe-delete-confirm-modal
 */

.recipe-delete-confirm-modal * {
    box-sizing: border-box;
}

.recipe-delete-confirm-modal .modal-overlay {
    overflow: hidden;
}

.recipe-delete-confirm-modal .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10002;
}

@media (max-width: 991px) {
    .recipe-delete-confirm-modal .modal-backdrop {
        max-width: 100%;
        padding: 40px 20px;
    }
}

/* Pop - main modal container */
.recipe-delete-confirm-modal .delete-modal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    gap: 24px;
    width: 335px;
    max-width: 100%;
    background: #FFFFFF;
    box-shadow: 2px 2px 25px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    border: none;
    position: relative;
}

@media (max-width: 991px) {
    .recipe-delete-confirm-modal .delete-modal {
        width: 100%;
    }
}

/* Frame 1618875310 - header section */
.recipe-delete-confirm-modal .modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 13px;
    width: 300px;
    flex: none;
}

/* Frame 1618875309 - icon container */
.recipe-delete-confirm-modal .icon-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: #FF555D;
    border-radius: 33px;
    flex: none;
}

.recipe-delete-confirm-modal .icon-container .delete-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex: none;
}

/* Frame 1618875308 - header text */
.recipe-delete-confirm-modal .header-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 4px;
    width: 300px;
    flex: none;
    align-self: stretch;
}

.recipe-delete-confirm-modal .modal-title {
    font-family: 'Montserrat', -apple-system, Roboto, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    letter-spacing: -0.01em;
    color: #10152C;
    margin: 0;
    flex: none;
}

.recipe-delete-confirm-modal .recipe-name {
    font-family: 'Montserrat', -apple-system, Roboto, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    flex: none;
}

/* Frame 1618875315 - options section */
.recipe-delete-confirm-modal .options-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 8px;
    width: 304px;
    flex: none;
}

/* Frame 1618875314 / 1618875313 - option items */
.recipe-delete-confirm-modal .option-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    gap: 5px;
    width: 304px;
    min-height: 52px;
    background: #F6F6F6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: none;
    align-self: stretch;
}

.recipe-delete-confirm-modal .option-item.selected {
    border: 1px solid #5BB0BD;
}

.recipe-delete-confirm-modal .option-item:not(.selected) {
    border: 1px solid transparent;
}

/* Frame 1618875311 / 1618875312 - option content */
.recipe-delete-confirm-modal .option-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 4px;
    margin: 0 auto;
    width: 229px;
    flex: none;
}

.recipe-delete-confirm-modal .option-title {
    font-family: 'Montserrat', -apple-system, Roboto, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    margin: 0;
    flex: none;
    align-self: stretch;
}

.recipe-delete-confirm-modal .option-description {
    font-family: 'Montserrat', -apple-system, Roboto, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
    flex: none;
    align-self: stretch;
}

.recipe-delete-confirm-modal .selection-indicator {
    flex-shrink: 0;
    flex: none;
    width: 24px;
    height: 24px;
    background: #5BB0BD;
    border-radius: 50%;
    padding: 7px;
    object-fit: contain;
}

/* Frame 1618875316 - radio button */
.recipe-delete-confirm-modal .radio-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 10px;
    margin: 0 auto;
    width: 24px;
    height: 24px;
    flex: none;
}

.recipe-delete-confirm-modal .radio-circle {
    width: 20px;
    height: 20px;
    background: #D9D9D9;
    border-radius: 50%;
    flex: none;
}

/* Frame 1171276192 - modal actions */
.recipe-delete-confirm-modal .modal-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 10px;
    width: 100%;
    max-width: 287px;
    height: 42px;
    flex: none;
    align-self: stretch;
}

/* Frame 625738 - delete button */
.recipe-delete-confirm-modal .delete-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    gap: 20px;
    flex: 1;
    background: #FF555D;
    border-radius: 8px;
    border: none;
    font-family: 'Montserrat', -apple-system, Roboto, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.recipe-delete-confirm-modal .delete-button:hover {
    background-color: rgba(230, 65, 73, 1);
}

.recipe-delete-confirm-modal .delete-button:active {
    background-color: rgba(200, 45, 53, 1);
}

.recipe-delete-confirm-modal .button-text {
    flex: none;
}

/* Frame 625737 - cancel button */
.recipe-delete-confirm-modal .cancel-button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    gap: 20px;
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    background: transparent;
    font-family: 'Montserrat', -apple-system, Roboto, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #000000;
    cursor: pointer;
    transition: all 0.2s ease;
}

.recipe-delete-confirm-modal .cancel-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.recipe-delete-confirm-modal .cancel-button:active {
    background-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .recipe-delete-confirm-modal .cancel-button {
        white-space: initial;
    }
}
