/* TenSketch Chatbot - Modern Dark Theme */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.chat-toggle-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #EACBD2 0%, #D4B3BE 50%, #C49AAB 100%);
    border: none;
    border-radius: 50%;
    color: #333;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(234, 203, 210, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.chat-toggle-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(193, 178, 214, 0.5);
    background: linear-gradient(135deg, #C1B2D6 0%, #A89BBF 50%, #9B8AC7 100%);
}

.chat-toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.chat-toggle-btn:hover::before {
    left: 100%;
}

.notification-dot {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    border-radius: 50%;
    border: 3px solid white;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}


/* Chat Window - Dark Modern Design */
.chat-window {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 380px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 24px;    
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(234, 203, 210, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
}

.chat-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
    .chat-window {
        right: 20px !important;
        bottom: 90px !important;
        left: auto !important;
        width: 280px !important;
        max-width: 85vw !important;
        height: 55vh !important;
        max-height: 480px !important;
        min-height: 400px !important;
    }
    
    .chatbot-container {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .chat-window {
        right: 2vw !important;
        bottom: 2vw !important;
        left: auto !important;
        top: auto !important;
        width: 98vw !important;
    max-width: 320px !important;
    min-width: 180px;
    border-radius: 10px;
  }
}
@media (max-width: 360px) {
  .chat-window {
    max-width: 98vw !important;
    min-width: 120px;
    border-radius: 8px;
  }
}


body.chat-open {
  overflow-x: hidden !important;
}


.chat-header {
    background: linear-gradient(135deg, #EACBD2 0%, #D4B3BE 50%, #C49AAB 100%);
    color: white;
    padding: 20px 20px 25px;
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.chat-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}

.chat-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    border-radius: 2px;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.chat-header-content {
    position: relative;
    z-index: 2;
}

.chat-header h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.chat-status {
    display: flex;
    align-items: center;
    font-size: 14px;
    opacity: 0.95;
    font-weight: 500;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #00E676;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}

.chat-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Chat Messages Container - Dark Theme */


.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    min-height: 0; /* Allow flex item to shrink below content size */
}

/* Custom Scrollbar for Dark Theme */
.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #EACBD2, #D4B3BE);
    border-radius: 4px;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #D4B3BE, #EACBD2);
}


/* Message Styling - Dark Theme */
.message {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 36px;    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EACBD2 0%, #D4B3BE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(234, 203, 210, 0.3);
    letter-spacing: 0.5px;
}

.message-avatar:hover {
    transform: scale(1.1);
}

.message.user .message-avatar {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.message-bubble {
    max-width: 75%;
    padding: 14px 18px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    word-wrap: break-word;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    white-space: pre-line;
}

/* Bot message bubbles */
.message:not(.user) .message-bubble {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #2d3436;    border-radius: 20px 20px 20px 6px;
    border: 1px solid rgba(234, 203, 210, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.message:not(.user) .message-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* User message bubbles */
.message.user .message-bubble {
    background: linear-gradient(135deg, #EACBD2 0%, #D4B3BE 100%);
    color: #333;
    border-radius: 20px 20px 6px 20px;
    box-shadow: 0 4px 15px rgba(234, 203, 210, 0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.message.user .message-bubble:hover {    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 203, 210, 0.4);
}

/* Quick Replies - Dark Theme */
.quick-replies {
    margin-top: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;    border: 1px solid rgba(234, 203, 210, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.quick-replies-header {
    margin-bottom: 12px;
}

.quick-replies-label {
    font-size: 12px;
    color: #a0a0a0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-replies-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.quick-replies-divider {
    text-align: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-replies-divider span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 4px 12px;
    border-radius: 12px;
}

.quick-reply-btn {
    background: linear-gradient(135deg, rgba(234, 203, 210, 0.1) 0%, rgba(193, 178, 214, 0.1) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    color: #f0f0f0;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.quick-reply-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.quick-reply-btn:hover {
    background: linear-gradient(135deg, #C1B2D6 0%, #A89BBF 100%);
    color: #333;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(193, 178, 214, 0.4);
}

.quick-reply-btn:hover::before {
    left: 100%;
}

.quick-reply-btn.back-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ccc;
    margin-right: auto;
}

.quick-reply-btn.back-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}


/* Typing Indicator - Dark Theme */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px 20px 20px 6px;
    margin-left: 48px;
    animation: fadeInUp 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(234, 203, 210, 0.1);
}

.typing-dot {
    width: 8px;
    height: 8px;    background: linear-gradient(135deg, #EACBD2, #D4B3BE);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(234, 203, 210, 0.3);
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}


#typing-message {
    position: relative;
}

#typing-message::after {
    content: '|';
    color: #667eea;
    animation: blink 1s infinite;
    font-weight: 100;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}


.message {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


.message-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    transition: all 0.2s ease;
}

.message.bot .message-bubble:hover {
    background: #f1f3f4;
    transform: translateY(-1px);
}

.message.user .message-bubble:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}


/* Chat Form - Dark Theme */
.chat-form {
    margin-top: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.chat-form-group {
    margin-bottom: 16px;
}

.chat-form-label {
    display: block;
    font-size: 13px;
    color: #a0a0a0;
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.chat-form-input,
.chat-form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: #f0f0f0;
    transition: all 0.3s ease;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.chat-form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.chat-form-input:focus,
.chat-form-select:focus {
    outline: none;
    border-color: #EACBD2;
    background: rgba(234, 203, 210, 0.1);
    box-shadow: 0 0 0 3px rgba(234, 203, 210, 0.1);
    transform: translateY(-1px);
}

.chat-form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.chat-form-select option {
    background: #2d2d2d;
    color: #f0f0f0;
}

.chat-form-submit {
    background: linear-gradient(135deg, #EACBD2 0%, #D4B3BE 100%);
    color: #333;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.chat-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.chat-form-submit:hover {    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(193, 178, 214, 0.4);
    background: linear-gradient(135deg, #C1B2D6 0%, #A89BBF 100%);
}

.chat-form-submit:hover::before {
    left: 100%;
}


/* Chat Input - Dark Theme */
.chat-input-container {
    flex-shrink: 0;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 1px solid rgba(76, 175, 80, 0.2);
    padding: 16px 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.chat-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 12px 16px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.chat-input-wrapper:focus-within {
    border-color: #EACBD2;
    background: rgba(234, 203, 210, 0.1);
    box-shadow: 
        0 0 0 4px rgba(234, 203, 210, 0.1),
        0 4px 20px rgba(234, 203, 210, 0.2);
    transform: translateY(-2px);
}

.chat-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #f0f0f0;
    padding: 8px 0;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.chat-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.chat-send-btn {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #EACBD2 0%, #D4B3BE 100%);
    border: none;
    border-radius: 50%;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(234, 203, 210, 0.3);
    position: relative;
    overflow: hidden;
}

.chat-send-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.chat-send-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(193, 178, 214, 0.5);
    background: linear-gradient(135deg, #C1B2D6 0%, #A89BBF 100%);
}

.chat-send-btn:hover::before {
    left: 100%;
}

.chat-send-btn:active {
    transform: scale(1.05);
}

/* Mobile Responsive - Dark Theme */
@media (max-width: 768px) {
    .chatbot-container {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-toggle-btn {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
    
    .chat-window {
        width: calc(100vw - 30px) !important;
        height: calc(100vh - 30px) !important;
        max-height: 85vh !important;
        border-radius: 20px;
    }
    
    .chat-header {
        padding: 18px 18px 22px;
        border-radius: 20px 20px 0 0;
    }
    
    .chat-header h3 {
        font-size: 18px;
    }
    
    .chat-messages {
        padding: 20px 16px;
        gap: 16px;
    }
    
    .chat-input-container {
        padding: 12px 16px;
    }
    
    .chat-input-wrapper {
        padding: 10px 14px;
    }
    
    .chat-input {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 6px 0;
    }
    
    .chat-send-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .quick-replies {
        padding: 12px;
    }
    
    .quick-replies-buttons {
        gap: 8px;
    }
    
    .quick-reply-btn {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .message-avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .message-bubble {
        padding: 12px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 20px) !important;
        height: calc(100vh - 20px) !important;
        right: 10px !important;
        bottom: 10px !important;
    }
    
    .quick-reply-btn {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .chat-header h3 {
        font-size: 16px;
    }
    
    .chat-status {
        font-size: 12px;
    }
}

/* Tablet Responsive - Dark Theme */
@media (min-width: 481px) and (max-width: 768px) {
    .chat-window {
        width: 300px !important;
        max-width: 80vw !important;
        height: 520px !important;
        right: 25px !important;
        bottom: 90px !important;
    }
    
    .chat-header h3 {
        font-size: 18px !important;
    }
    
    .chat-status {
        font-size: 13px !important;
    }
    
    .chat-messages {
        padding: 15px !important;
    }
    
    .message {
        margin-bottom: 12px !important;
        max-width: 85% !important;
    }
    
    .quick-options {
        padding: 12px 15px !important;
        gap: 8px !important;
    }
    
    .quick-option {
        padding: 8px 12px !important;
        font-size: 12px !important;
    }
    
    .chat-input-container {
        padding: 12px 15px !important;
    }
    
    .chat-input {
        font-size: 14px !important;
        padding: 12px 45px 12px 15px !important;
    }
}

/* Enhanced animation for better UX */
@keyframes inputFocus {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.chat-input-wrapper:focus-within {
    animation: inputFocus 0.3s ease;
}


/* Success Animation - Dark Theme */
.success-animation {
    text-align: center;
    padding: 25px;    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(234, 203, 210, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.success-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #EACBD2 0%, #D4B3BE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #333;
    font-size: 28px;
    animation: successPulse 0.8s ease;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

@keyframes successPulse {
    0% { 
        transform: scale(0);
        opacity: 0;
    }
    50% { 
        transform: scale(1.3);
        opacity: 0.8;
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

.success-text {
    color: #f0f0f0;
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.5;
    font-weight: 500;
}

.success-action {    background: linear-gradient(135deg, #EACBD2 0%, #D4B3BE 100%);
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.success-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.success-action:hover {    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(193, 178, 214, 0.5);
    background: linear-gradient(135deg, #C1B2D6 0%, #A89BBF 100%);
}

.success-action:hover::before {
    left: 100%;
}
