/* Early Bird College - Branded Chat Widget */
/* Based on https://www.earlybirdcollege.com/ */

:root {
    /* Early Bird College Brand Colors */
    --eb-primary-color: #1d72f3; /* Blue for headers and user messages */
    --eb-primary-hover: #1557c7;
    --eb-primary-light: #4a8cf7;
    --eb-accent-color: #10b981;
    --eb-button-color: #97c45a; /* Green for floating button */
    --eb-button-hover: #82ad47;
    --eb-bg-color: #ffffff;
    --eb-bg-secondary: #f8fafc;
    --eb-text-color: #1a1a1a;
    --eb-text-secondary: #64748b;
    --eb-border-color: #e2e8f0;
    --eb-bot-message-bg: #f1f5f9;
    --eb-user-message-bg: #1d72f3;
    --eb-user-message-text: #ffffff;
    
    /* Shadows */
    --eb-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --eb-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --eb-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --eb-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ========================================
   BASE WIDGET STRUCTURE
======================================== */

.early-bird-chat-widget {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   FLOATING WIDGET (Bottom Right/Left)
======================================== */

.early-bird-chat-widget[data-position="bottom-right"],
.early-bird-chat-widget[data-position="bottom-left"] {
    position: fixed;
    bottom: 24px;
    z-index: 9999;
}

.early-bird-chat-widget[data-position="bottom-right"] {
    right: 24px;
}

.early-bird-chat-widget[data-position="bottom-left"] {
    left: 24px;
}

/* Floating Toggle Button */
.early-bird-chat-widget[data-position="bottom-right"] .early-bird-chat-toggle,
.early-bird-chat-widget[data-position="bottom-left"] .early-bird-chat-toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--eb-button-color);
    border: none;
    box-shadow: var(--eb-shadow-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    position: relative;
    overflow: visible;
    padding: 0;
}

/* Pulsing ring effect */
.early-bird-chat-widget[data-position="bottom-right"] .early-bird-chat-toggle::before,
.early-bird-chat-widget[data-position="bottom-left"] .early-bird-chat-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--eb-button-color);
    transform: translate(-50%, -50%);
    animation: pulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.early-bird-chat-widget[data-position="bottom-right"] .early-bird-chat-toggle:hover,
.early-bird-chat-widget[data-position="bottom-left"] .early-bird-chat-toggle:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: var(--eb-shadow-xl);
    background: var(--eb-button-hover);
}

/* Pause pulse animation on hover */
.early-bird-chat-widget[data-position="bottom-right"] .early-bird-chat-toggle:hover::before,
.early-bird-chat-widget[data-position="bottom-left"] .early-bird-chat-toggle:hover::before {
    animation-play-state: paused;
}

.early-bird-chat-widget[data-position="bottom-right"] .early-bird-chat-toggle:active,
.early-bird-chat-widget[data-position="bottom-left"] .early-bird-chat-toggle:active {
    transform: scale(0.95);
}

/* Bird logo in toggle button - centered with flexbox */
.early-bird-chat-toggle .early-bird-logo {
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 1;
    object-fit: contain;
    display: block;
    margin: auto;
    /* Keep original black color - no filter applied */
}

/* Fallback SVG styling */
.early-bird-chat-toggle svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
}

/* Floating Chat Container */
.early-bird-chat-widget[data-position="bottom-right"] .early-bird-chat-container,
.early-bird-chat-widget[data-position="bottom-left"] .early-bird-chat-container {
    display: none;
    flex-direction: column;
    width: 400px;
    height: 640px;
    max-height: 85vh;
    background-color: var(--eb-bg-color);
    border-radius: 16px;
    box-shadow: var(--eb-shadow-xl);
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--eb-border-color);
}

.early-bird-chat-widget[data-position="bottom-right"].open .early-bird-chat-container,
.early-bird-chat-widget[data-position="bottom-left"].open .early-bird-chat-container {
    display: flex;
    animation: slideUpFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.early-bird-chat-widget[data-position="bottom-right"].open .early-bird-chat-toggle,
.early-bird-chat-widget[data-position="bottom-left"].open .early-bird-chat-toggle {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

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

/* ========================================
   INLINE WIDGET (Shortcode)
   Full-width natural page element
======================================== */

.early-bird-chat-widget[data-position="inline"] {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 48px auto;
}

/* Hide toggle button for inline */
.early-bird-chat-widget[data-position="inline"] .early-bird-chat-toggle {
    display: none !important;
}

/* Inline Container - Natural Page Element */
.early-bird-chat-widget[data-position="inline"] .early-bird-chat-container {
    display: flex !important;
    flex-direction: column;
    position: relative !important;
    width: 100%;
    min-height: 600px;
    height: auto;
    background: var(--eb-bg-color);
    border-radius: 20px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06), 
                0 10px 40px -10px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--eb-border-color);
}

/* Inline Header - Compact and Clean */
.early-bird-chat-widget[data-position="inline"] .early-bird-chat-header {
    background: linear-gradient(135deg, var(--eb-primary-color) 0%, var(--eb-primary-light) 100%);
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.early-bird-chat-widget[data-position="inline"] .early-bird-chat-header h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

/* Subtitle for inline header */
.early-bird-chat-widget[data-position="inline"] .early-bird-chat-header::after {
    content: 'Powered by AI • Real-time Responses';
    display: block;
    font-size: 13px;
    opacity: 0.95;
    margin-top: 6px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
}

/* Hide minimize button for inline */
.early-bird-chat-widget[data-position="inline"] .early-bird-chat-minimize {
    display: none !important;
}

/* Inline Messages Area - Spacious and Centered */
.early-bird-chat-widget[data-position="inline"] .early-bird-chat-messages {
    padding: 48px 32px;
    min-height: 450px;
    gap: 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* Inline Messages - Comfortable Reading Width */
.early-bird-chat-widget[data-position="inline"] .message-content {
    max-width: 85%;
    padding: 14px 18px;
    font-size: 15px;
    line-height: 1.6;
}

/* Inline Input - Prominent but Not Overwhelming */
.early-bird-chat-widget[data-position="inline"] .early-bird-chat-input {
    padding: 28px 32px;
    background: var(--eb-bg-color);
    border-top: 1px solid var(--eb-border-color);
}

.early-bird-chat-widget[data-position="inline"] .early-bird-chat-input form {
    max-width: 900px;
    margin: 0 auto;
}

.early-bird-chat-widget[data-position="inline"] .early-bird-chat-input input {
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 12px;
    border: 2px solid var(--eb-border-color);
    background: white;
}

.early-bird-chat-widget[data-position="inline"] .early-bird-chat-input button {
    width: 48px;
    height: 48px;
    min-width: 48px;
    max-width: 48px;
    min-height: 48px;
    max-height: 48px;
    flex-shrink: 0;
}

/* ========================================
   SHARED COMPONENTS (Both Modes)
======================================== */

.early-bird-chat-header {
    background: linear-gradient(135deg, var(--eb-primary-color) 0%, var(--eb-primary-hover) 100%);
    color: white;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--eb-shadow-sm);
    position: relative;
}

.early-bird-chat-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* Header actions container */
.header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Icon buttons in header (Reset & Email) */
.header-icon-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    width: 36px;
    height: 36px;
}

.header-icon-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.header-icon-btn:active {
    transform: scale(0.95);
}

.header-icon-btn svg {
    width: 18px;
    height: 18px;
}

/* Minimize button */
.early-bird-chat-minimize {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    width: 36px;
    height: 36px;
}

.early-bird-chat-minimize:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.early-bird-chat-minimize:active {
    transform: scale(0.95);
}

.early-bird-chat-minimize .dashicons {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

/* Messages Area */
.early-bird-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #ffffff;
}

.early-bird-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.early-bird-chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.early-bird-chat-messages::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.early-bird-chat-messages::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

/* Messages */
.early-bird-message {
    display: flex;
    animation: messageSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    animation-fill-mode: forwards;
    gap: 10px;
    align-items: flex-start;
}

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

.early-bird-message.bot-message {
    justify-content: flex-start;
}

.early-bird-message.user-message {
    justify-content: flex-end;
}

/* Avatar */
.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    margin-top: 4px;
}

.message-content {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 16px;
    word-wrap: break-word;
    position: relative;
    box-shadow: var(--eb-shadow-sm);
}

/* Timestamp */
.message-timestamp {
    display: block;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 4px;
    font-weight: 400;
}

.user-message .message-timestamp {
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
}

.bot-message .message-content {
    background-color: var(--eb-bot-message-bg);
    color: var(--eb-text-color);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--eb-border-color);
}

.user-message .message-content {
    background: linear-gradient(135deg, var(--eb-primary-color) 0%, var(--eb-primary-light) 100%);
    color: var(--eb-user-message-text);
    border-bottom-right-radius: 4px;
    box-shadow: var(--eb-shadow-md);
}

.message-text {
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

/* Formatted content in bot messages */
.bot-message .message-text {
    line-height: 1.7;
}

.bot-message .message-text p {
    margin: 0 0 12px 0;
}

.bot-message .message-text p:last-child {
    margin-bottom: 0;
}

.bot-message .message-text strong {
    font-weight: 600;
    color: var(--eb-primary-color);
}

/* Formatted lists */
.bot-message .message-text .formatted-list {
    margin: 12px 0;
    padding: 0;
    list-style: none;
}

.bot-message .message-text .formatted-list li {
    margin: 8px 0;
    padding-left: 0;
    line-height: 1.6;
}

/* Numbered lists */
.bot-message .message-text .formatted-list .numbered-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.bot-message .message-text .formatted-list .numbered-item .number {
    color: var(--eb-primary-color);
    font-weight: 600;
    flex-shrink: 0;
    min-width: 24px;
}

/* Bullet lists */
.bot-message .message-text .formatted-list .bullet-item {
    padding-left: 20px;
    position: relative;
}

.bot-message .message-text .formatted-list .bullet-item::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--eb-primary-color);
    font-weight: bold;
    font-size: 16px;
}

/* Nested lists */
.bot-message .message-text .formatted-list .formatted-list {
    margin-left: 20px;
    margin-top: 8px;
}

/* Line breaks */
.bot-message .message-text br {
    display: block;
    content: "";
    margin-top: 4px;
}

/* Input Area */
.early-bird-chat-input {
    padding: 20px 24px;
    border-top: 1px solid var(--eb-border-color);
    background-color: var(--eb-bg-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
}

.early-bird-chat-input form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.early-bird-chat-input input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid var(--eb-border-color);
    border-radius: 24px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
    background-color: #f9fafb;
}

.early-bird-chat-input input:focus {
    border-color: var(--eb-primary-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(29, 114, 243, 0.1);
}

.early-bird-chat-input input::placeholder {
    color: var(--eb-text-secondary);
}

.early-bird-chat-input button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    max-width: 44px;
    min-height: 44px;
    max-height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--eb-primary-color) 0%, var(--eb-primary-light) 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: var(--eb-shadow-md);
    flex-shrink: 0;
    padding: 0;
}

.early-bird-chat-input button:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: var(--eb-shadow-lg);
}

.early-bird-chat-input button:active:not(:disabled) {
    transform: scale(0.95);
}

.early-bird-chat-input button:disabled {
    background: linear-gradient(135deg, #cbd5e0 0%, #a0aec0 100%);
    cursor: not-allowed;
    opacity: 0.6;
}

.early-bird-chat-input button svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   CHAT FOOTER (Privacy Link)
======================================== */

.early-bird-chat-footer {
    padding: 10px 24px;
    text-align: center;
    border-top: 1px solid var(--eb-border-color);
    background: var(--eb-bg-secondary);
}

.early-bird-chat-footer a {
    font-size: 12px;
    color: var(--eb-text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.early-bird-chat-footer a:hover {
    color: var(--eb-primary-color);
    text-decoration: underline;
}

/* Loading Indicator */
.early-bird-chat-loading {
    padding: 12px 24px;
    display: flex;
    justify-content: flex-start;
    animation: messageSlideIn 0.3s ease;
}

.loading-dots {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background-color: var(--eb-bot-message-bg);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    box-shadow: var(--eb-shadow-sm);
    border: 1px solid var(--eb-border-color);
}

.loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--eb-primary-color);
    animation: dotPulse 1.4s infinite ease-in-out;
    opacity: 0.3;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

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

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 900px) {
    .early-bird-chat-widget[data-position="inline"] {
        margin: 32px 16px;
    }
    
    .early-bird-chat-widget[data-position="inline"] .early-bird-chat-messages {
        padding: 32px 24px;
    }
    
    .early-bird-chat-widget[data-position="inline"] .early-bird-chat-input {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .early-bird-chat-widget[data-position="inline"] {
        margin: 24px 12px;
        border-radius: 16px;
    }
    
    .early-bird-chat-widget[data-position="inline"] .early-bird-chat-container {
        border-radius: 16px;
    }
    
    .early-bird-chat-widget[data-position="inline"] .early-bird-chat-header {
        padding: 24px 20px;
    }
    
    .early-bird-chat-widget[data-position="inline"] .early-bird-chat-header h3 {
        font-size: 20px;
    }
    
    .early-bird-chat-widget[data-position="inline"] .early-bird-chat-messages {
        padding: 24px 16px;
        min-height: 350px;
    }
    
    .early-bird-chat-widget[data-position="inline"] .early-bird-chat-input {
        padding: 20px 16px;
    }
    
    .message-content {
        max-width: 85%;
    }
}

@media (max-width: 480px) {
    /* Floating mode - fullscreen on mobile */
    .early-bird-chat-widget[data-position="bottom-right"],
    .early-bird-chat-widget[data-position="bottom-left"] {
        bottom: 0;
        right: 0;
        left: 0;
    }
    
    .early-bird-chat-widget[data-position="bottom-right"] .early-bird-chat-container,
    .early-bird-chat-widget[data-position="bottom-left"] .early-bird-chat-container {
        width: 100vw;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        margin-bottom: 0;
    }
    
    .early-bird-chat-toggle {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
    }
}

/* ========================================
   UTILITY CLASSES
======================================== */

/* Hide floating widget when inline exists on the same page */
body:has(.early-bird-chat-widget[data-position="inline"]) .early-bird-chat-widget[data-position="bottom-right"],
body:has(.early-bird-chat-widget[data-position="inline"]) .early-bird-chat-widget[data-position="bottom-left"] {
    display: none !important;
}

.early-bird-chat-widget.minimized .early-bird-chat-container {
    display: none;
}

.early-bird-chat-widget.minimized .early-bird-chat-toggle {
    display: flex;
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .early-bird-chat-widget *,
    .early-bird-chat-widget *::before,
    .early-bird-chat-widget *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   EMAIL MODAL
======================================== */

.early-bird-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 450px;
    width: 90%;
    box-shadow: var(--eb-shadow-xl);
    animation: modalSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-header {
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid var(--eb-border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--eb-text-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: var(--eb-text-secondary);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--eb-bg-secondary);
    color: var(--eb-text-color);
}

.modal-body {
    padding: 24px;
}

.modal-body p {
    margin: 0 0 16px 0;
    color: var(--eb-text-color);
    font-size: 15px;
}

.modal-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--eb-border-color);
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.modal-input:focus {
    border-color: var(--eb-primary-color);
    box-shadow: 0 0 0 3px rgba(29, 114, 243, 0.1);
}

.modal-hint {
    margin-top: 12px !important;
    font-size: 13px !important;
    color: var(--eb-text-secondary) !important;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--eb-border-color);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.modal-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.modal-btn-secondary {
    background: white;
    color: var(--eb-text-color);
    border: 1px solid var(--eb-border-color);
}

.modal-btn-secondary:hover {
    background: var(--eb-bg-secondary);
}

.modal-btn-primary {
    background: linear-gradient(135deg, var(--eb-primary-color) 0%, var(--eb-primary-light) 100%);
    color: white;
    box-shadow: var(--eb-shadow-md);
}

.modal-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--eb-shadow-lg);
}

.modal-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ========================================
   NOTIFICATIONS
======================================== */

.early-bird-notification {
    position: fixed;
    bottom: 100px;
    right: 24px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--eb-shadow-xl);
    font-size: 14px;
    font-weight: 500;
    z-index: 10001;
    max-width: 350px;
    border-left: 4px solid var(--eb-primary-color);
    animation: notificationSlideIn 0.3s ease;
}

@keyframes notificationSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.notification-success {
    border-left-color: #10b981;
    color: #065f46;
}

.notification-error {
    border-left-color: #ef4444;
    color: #991b1b;
}

.notification-info {
    border-left-color: var(--eb-primary-color);
    color: var(--eb-text-color);
}
