/* css/modal.css */

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s, backdrop-filter 0.5s;
    backdrop-filter: blur(0px);
}

.modal.fade-in {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(5px);
}

.modal.fade-out {
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(0px);
}

/* Clockwork Gears decoration */
.modal::before,
.modal::after {
    content: '⚙';
    position: absolute;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.modal::before {
    top: 20px;
    left: 20px;
    animation: clockworkGear 10s linear infinite;
}

.modal::after {
    bottom: 20px;
    right: 20px;
    animation: clockworkGear 8s linear infinite reverse;
}

.modal-content {
    /* Remove fixed width and use max-width */
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 90%; /* Already responsive */
    max-width: 500px;
    max-height: 80vh; /* 80% of viewport height */
    position: relative;
    animation: jewelryBoxContent 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow-y: auto;
    overscroll-behavior: contain; /* Prevent scroll chaining to page */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Modal children - no animation to avoid layout issues */

/* Modal Title Container - Decorative label + readable wish text */
.modal-title-container {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.modal-title-container h2 {
    font-family: 'Pacifico', cursive;
    font-size: 1.5em;
    color: #e91e63;
    margin-bottom: 8px;
    user-select: none;
    pointer-events: none;
}

/* ============================================================================
   WISH DETAILS MODAL STYLES
   ============================================================================ */

.wish-details-modal {
    max-width: 450px;
}

.wish-details-modal .modal-title-container {
    margin-bottom: 24px;
}

/* Section Styles */
.wish-modal-section {
    margin-bottom: 16px;
}

.wish-section-label {
    display: block;
    font-size: 0.85em;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-family: 'Open Sans', sans-serif;
}

/* Edit Section */
.wish-edit-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.wish-edit-row input {
    flex: 1;
    padding: 12px 16px;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    margin: 0;
}

.wish-edit-row input:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.wish-edit-row input:disabled {
    background-color: #f5f5f5;
    color: #666;
    cursor: not-allowed;
}

/* Save wish button (check icon) */
.wish-edit-row .save-wish-button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.wish-edit-row .save-wish-button:hover:not(:disabled) {
    background: #e91e63;
    color: white;
    transform: scale(1.05);
}

.wish-edit-row .save-wish-button.has-changes {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
    animation: pulse-subtle 2s ease-in-out infinite;
}

.wish-edit-row .save-wish-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wish-edit-row .save-wish-button .lucide {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

@keyframes pulse-subtle {
    0%, 100% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(233, 30, 99, 0); }
}

.wish-edit-status {
    font-size: 0.85em;
    margin-top: 6px;
    padding: 0 4px;
    font-family: 'Open Sans', sans-serif;
}

.wish-edit-status.success {
    color: #4caf50;
}

.wish-edit-status.error {
    color: #f44336;
}

/* Read-only edit section */
.wish-modal-section.readonly .wish-section-label::after {
    content: ' (read only)';
    font-weight: 400;
    text-transform: none;
    opacity: 0.7;
}

/* Links Section */
#wish-links-section #link-list {
    max-height: 180px;
    margin-bottom: 12px;
}

#wish-links-section #link-list li {
    padding: 10px 12px;
    margin: 6px 0;
    font-size: 0.9em;
}

.link-list-empty {
    background: transparent !important;
    text-align: center;
    padding: 20px !important;
    cursor: default !important;
}

.link-list-empty:hover {
    transform: none !important;
    box-shadow: none !important;
}

.link-list-empty-text {
    color: #999;
    font-style: italic;
    font-size: 0.95em;
}

/* Add link row */
.wish-add-link-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.wish-add-link-row input {
    flex: 1;
    padding: 10px 14px;
    font-size: 0.95em;
    font-family: 'Open Sans', sans-serif;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: border-color 0.2s;
    box-sizing: border-box;
    margin: 0;
}

.wish-add-link-row input:focus {
    outline: none;
    border-color: #e91e63;
}

.wish-add-link-row input:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

/* Add link button (plus icon) */
.wish-add-link-row .add-link-button {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
    margin: 0;
    border: 2px solid #e91e63;
    border-radius: 50%;
    background: white;
    color: #e91e63;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.wish-add-link-row .add-link-button:hover:not(:disabled) {
    background: #e91e63;
    color: white;
    transform: scale(1.05);
}

.wish-add-link-row .add-link-button:disabled,
.wish-add-link-row .add-link-button.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: #ccc;
    color: #ccc;
}

.wish-add-link-row .add-link-button .lucide {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* ============================================================================
   COMMENTS SECTION
   ============================================================================ */

/* Spoiler toggle for own wishes */
.comments-spoiler-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 193, 7, 0.1));
    border: 1px solid rgba(255, 152, 0, 0.3);
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 0.9em;
    flex-wrap: wrap;
}

.comments-spoiler-toggle .lucide {
    width: 18px;
    height: 18px;
    color: #ff9800;
    flex-shrink: 0;
}

.comments-spoiler-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #ff9800;
}

.comments-spoiler-toggle label {
    font-family: 'Open Sans', sans-serif;
    color: #666;
    cursor: pointer;
    user-select: none;
}

.comments-spoiler-toggle .spoiler-warning-text {
    font-size: 0.85em;
    color: #ff9800;
    font-style: italic;
    margin-left: auto;
}

@media (max-width: 400px) {
    .comments-spoiler-toggle .spoiler-warning-text {
        width: 100%;
        margin-left: 26px;
        margin-top: 4px;
    }
}

/* Comments list */
#comment-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 12px 0;
    max-height: 200px;
    overflow-y: auto;
    overscroll-behavior: contain; /* Prevent scroll chaining */
    -webkit-overflow-scrolling: touch;
}

/* Comment item */
.comment-item {
    background-color: #f9f9f9;
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 8px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.comment-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comment-item:last-child {
    margin-bottom: 0;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.comment-author {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85em;
    font-weight: 600;
    color: #333;
}

.comment-timestamp {
    font-size: 0.75em;
    color: #999;
    font-family: 'Open Sans', sans-serif;
}

.comment-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95em;
    color: #555;
    line-height: 1.4;
    word-break: break-word;
    padding-right: 30px; /* Space for delete button */
}

.comment-delete-button {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    color: #ccc;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.comment-delete-button:hover {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.comment-delete-button .lucide {
    width: 14px;
    height: 14px;
}

/* Empty comment list state */
.comment-list-empty {
    text-align: center;
    padding: 16px !important;
    background: transparent;
}

.comment-list-empty-text {
    color: #999;
    font-style: italic;
    font-size: 0.95em;
    font-family: 'Open Sans', sans-serif;
}

/* Comments info message (shown when viewing own wish) */
.comment-list-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px !important;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.08), rgba(0, 150, 136, 0.08));
    border: 1px solid rgba(33, 150, 243, 0.15);
    border-radius: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.comment-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1976d2;
}

.comment-info-icon .lucide {
    width: 18px;
    height: 18px;
}

.comment-info-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85em;
    color: #1565c0;
}

/* Add comment row */
/* Visible to owner checkbox row */
.visible-to-owner-row {
    margin-bottom: 10px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.08), rgba(233, 30, 99, 0.08));
    border-radius: 8px;
    border: 1px solid rgba(156, 39, 176, 0.15);
}

.visible-to-owner-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9em;
    color: #666;
    user-select: none;
}

.visible-to-owner-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #9c27b0;
    cursor: pointer;
    margin: 0;
}

.visible-to-owner-label span {
    flex: 1;
}

.wish-add-comment-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.wish-add-comment-row input {
    flex: 1;
    padding: 10px 14px;
    font-size: 0.95em;
    font-family: 'Open Sans', sans-serif;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: border-color 0.2s;
    box-sizing: border-box;
    margin: 0;
}

.wish-add-comment-row input:focus {
    outline: none;
    border-color: #9c27b0;
}

.wish-add-comment-row input:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

/* Add comment button */
.wish-add-comment-row .add-comment-button {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
    margin: 0;
    border: 2px solid #9c27b0;
    border-radius: 50%;
    background: white;
    color: #9c27b0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.wish-add-comment-row .add-comment-button:hover:not(:disabled) {
    background: #9c27b0;
    color: white;
    transform: scale(1.05);
}

.wish-add-comment-row .add-comment-button:disabled,
.wish-add-comment-row .add-comment-button.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: #ccc;
    color: #ccc;
}

.wish-add-comment-row .add-comment-button .lucide {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Delete Section */
.wish-delete-section {
    margin-top: 8px;
    padding-top: 0;
}

.wish-delete-section .modal-separator {
    margin-bottom: 16px;
}

/* Remove link button update */
#link-list li .remove-link {
    background: none;
    border: none;
    color: #999;
    font-size: 1em;
    cursor: pointer;
    margin-bottom: 0;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    border-radius: 50%;
    padding: 0;
}

#link-list li .remove-link:hover {
    color: #f44336;
    background: rgba(244, 67, 54, 0.1);
}

#link-list li .remove-link .lucide {
    width: 16px;
    height: 16px;
}

/* Confirm Modal Overlay */
.confirm-modal-overlay {
    z-index: 1000;
}

/* ============================================================================
   LEGACY STYLES (kept for backwards compatibility)
   ============================================================================ */

.modal-wish-name-container {
    display: block;
    text-align: left;
    width: 100%;
}

.modal-wish-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    word-break: break-word;
    padding: 0 10px;
    margin: 0;
    display: inline;
    transition: color 0.2s, border-color 0.2s;
}

/* Editable wish name - clickable to edit */
.modal-wish-name.editable {
    cursor: pointer;
    border-bottom: 1px dashed transparent;
}

.modal-wish-name.editable:hover {
    color: #e91e63;
    border-bottom-color: #e91e63;
}

/* Mobile indicator for editable wish name */
@media (max-width: 768px) {
    .modal-wish-name.editable {
        border-bottom-color: rgba(233, 30, 99, 0.3);
    }
    
    .modal-wish-name.editable::after {
        content: ' ✎';
        font-size: 0.8em;
        color: #e91e63;
        opacity: 0.6;
    }
}

/* Edit wish button */
.edit-wish-button {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s, background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edit-wish-button:hover {
    color: #e91e63;
    background-color: rgba(233, 30, 99, 0.1);
}

.edit-wish-button .lucide {
    width: 16px;
    height: 16px;
}

/* Edit wish form */
.edit-wish-form {
    margin-top: 10px;
}

.edit-wish-form input {
    width: 100%;
    padding: 10px 15px;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.edit-wish-form input:focus {
    outline: none;
    border-color: #e91e63;
}

.edit-wish-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
}

.save-wish-button,
.cancel-edit-button {
    padding: 8px 20px;
    font-size: 0.9em;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.save-wish-button {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: #fff;
    border: none;
}

.save-wish-button:hover {
    background: linear-gradient(135deg, #ad1457, #880e4f);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

.cancel-edit-button {
    background: #fff;
    color: #666;
    border: 2px solid #ddd;
}

.cancel-edit-button:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5em;
    color: #999;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s, transform 0.2s;
    z-index: 10; /* Ensure close button is always clickable above other content */
    animation: none !important; /* Prevent envelope slide animation from affecting close button */
}

.close-button:hover {
    color: #666;
}

.close-button:active {
    color: #333;
    transform: scale(0.9);
}

#link-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
    max-height: 200px;
    overflow-y: auto;
    overscroll-behavior: contain; /* Prevent scroll chaining */
    -webkit-overflow-scrolling: touch;
}

#link-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    margin: 5px 0;
    padding: 10px;
    border-radius: 8px;
    opacity: 1;
    animation-fill-mode: forwards;
    transition: transform 0.3s, box-shadow 0.3s;
}

#link-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(233, 30, 99, 0.15);
}

#link-list li a {
    color: #e91e63;
    text-decoration: none;
    word-break: break-all;
    flex: 1;
    min-width: 0;
}

#link-list li a::after {
    content: ' ↗';
    font-size: 0.8em;
    opacity: 0.6;
}

#link-list li a:hover {
    text-decoration: underline;
}

#link-list li .remove-link {
    background: none;
    border: none;
    color: #e91e63;
    font-size: 1.2em;
    cursor: pointer;
    margin-bottom: 0;
    width: auto;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s, transform 0.2s;
    flex-shrink: 0;
}

#link-list li .remove-link:hover {
    color: #ad1457;
}

#link-list li .remove-link:active {
    color: #ad1457;
    transform: scale(0.9);
}

@media (max-width: 400px) {
    #link-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    #link-list li .remove-link {
        align-self: flex-end;
    }
}

/* Group Management Modal Animations */
#group-management-modal {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s, backdrop-filter 0.5s;
}

#group-management-modal.active {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(5px);
}

#group-management-modal .modal-content {
    animation: jewelryBoxContent 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Stagger animation for group member items */
.group-member-item {
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Modal separator for archive section */
.modal-separator {
    border: none;
    border-top: 1px solid rgba(156, 39, 176, 0.2);
    margin: 20px 0;
}

/* ============================================================================
   TOAST NOTIFICATION SYSTEM
   ============================================================================ */

.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    pointer-events: none;
    max-width: calc(100vw - 40px);
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95em;
    max-width: 380px;
    min-width: 280px;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.toast-visible {
    transform: translateX(0);
    opacity: 1;
}

.toast-dismissing {
    animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideOut {
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-icon .lucide {
    width: 24px;
    height: 24px;
}

.toast-message {
    flex: 1;
    line-height: 1.4;
    color: #333;
    word-break: break-word;
}

.toast-close {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    color: #999;
    font-size: 1.4em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s, color 0.2s;
}

.toast-close:hover {
    background-color: rgba(0, 0, 0, 0.08);
    color: #666;
}

.toast-close:active {
    transform: scale(0.9);
}

/* Toast progress bar */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: currentColor;
    opacity: 0.3;
    transform-origin: left;
    animation: toastProgress linear forwards;
}

@keyframes toastProgress {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

/* Toast type variants */
.toast-success {
    border-left: 4px solid #4caf50;
}

.toast-success .toast-icon {
    color: #4caf50;
}

.toast-success .toast-progress {
    background: #4caf50;
}

.toast-error {
    border-left: 4px solid #f44336;
}

.toast-error .toast-icon {
    color: #f44336;
}

.toast-error .toast-progress {
    background: #f44336;
}

.toast-warning {
    border-left: 4px solid #ff9800;
}

.toast-warning .toast-icon {
    color: #ff9800;
}

.toast-warning .toast-progress {
    background: #ff9800;
}

.toast-info {
    border-left: 4px solid #e91e63;
}

.toast-info .toast-icon {
    color: #e91e63;
}

.toast-info .toast-progress {
    background: #e91e63;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .toast-container {
        bottom: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
    }
    
    .toast {
        max-width: none;
        min-width: 0;
        width: 100%;
    }
}

/* ============================================================================
   CONFIRMATION MODAL
   ============================================================================ */

.confirm-modal-content {
    text-align: center;
    max-width: 400px;
}

.confirm-modal-content h2 {
    font-family: 'Pacifico', cursive;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.confirm-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    animation: none !important;
}

.confirm-icon .lucide {
    width: 32px;
    height: 32px;
}

.confirm-icon-normal {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(156, 39, 176, 0.1));
    color: #e91e63;
}

.confirm-icon-danger {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.confirm-message {
    color: #666;
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 25px;
    font-family: 'Open Sans', sans-serif;
}

.confirm-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.confirm-btn {
    flex: 1;
    max-width: 150px;
    padding: 12px 24px;
    font-size: 0.95em;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.confirm-btn.secondary-button {
    background: #fff;
    color: #666;
    border: 2px solid #ddd;
}

.confirm-btn.secondary-button:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.confirm-btn.primary-button {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: #fff;
    border: none;
}

.confirm-btn.primary-button:hover {
    background: linear-gradient(135deg, #ad1457, #880e4f);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.confirm-btn.danger-button {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: #fff;
    border: none;
}

.confirm-btn.danger-button:hover {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.4);
}

@media (max-width: 400px) {
    .confirm-actions {
        flex-direction: column;
    }
    
    .confirm-btn {
        max-width: none;
    }
}
