/* Google Calendar Authentication Styles */
.google-status-container {
    margin-bottom: 20px;
}

.google-auth-alert {
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid;
    animation: slideIn 0.3s ease-out;
}

.google-auth-alert.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.google-auth-alert.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.google-auth-alert.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.alert-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert-content i {
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.alert-text {
    flex: 1;
}

.alert-text strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.alert-text p {
    margin: 4px 0;
    font-size: 14px;
}

.error-detail {
    font-style: italic;
    opacity: 0.8;
    font-size: 13px !important;
}

.google-auth-alert .btn {
    margin-left: auto;
    flex-shrink: 0;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.google-auth-alert .btn-primary {
    background-color: #007bff;
    color: white;
}

.google-auth-alert .btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

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

/* Spinner animation for loading state */
.fa-spinner.fa-spin {
    animation: spin 1s linear infinite;
}

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

/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #222;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content b {
    color: #d33325;
}

.header h1 {
    color: #f8fafc;
    font-weight: 700;
    font-size: 1.875rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header h1 i {
    color: #10b981;
    font-size: 2rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #f8fafc;
}

.user-info:hover {
    background: rgba(0, 0, 0, 0.05);
}

.user-info i {
    font-size: 1.2rem;
    color: #25D366;
}

.logout-btn {
    background: rgba(131, 68, 239, 0.8);
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 1);
    transform: translateY(-1px);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #e2e8f0;
    font-weight: 500;
    border-radius: 8px;
    margin: 4px;
}

.dropdown-item:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.dropdown-item.logout {
    color: #dc3545;
    border-top: 1px solid #dee2e6;
}

.dropdown-item.logout:hover {
    background: #f8d7da;
}

.users-container {
    max-height: 500px;
    overflow-y: auto;
}

.reminder-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.reminder-item.can-send {
    border-left: 4px solid #28a745;
    background: #f8fff9;
}

.reminder-item.cannot-send {
    border-left: 4px solid #ffc107;
    background: #fffdf5;
}

.reminder-status {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
}

.reminder-reason {
    margin-top: 8px;
    font-style: italic;
}

.professional-override {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
}

.professional-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dee2e6;
}

.professional-actions {
    display: flex;
    gap: 10px;
}

.pricing-item.has-override {
    border-left: 4px solid #28a745;
    background: #f8fff9;
}

.pricing-item.default-pricing {
    border-left: 4px solid #6c757d;
    background: #f8f9fa;
}

.override-badge {
    background: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75em;
    margin-left: 10px;
}

.default-badge {
    background: #6c757d;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75em;
    margin-left: 10px;
}

.user-item {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.user-item:hover {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(16, 185, 129, 0.3);
}

.user-name {
    font-weight: 600;
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-details {
    margin-top: 5px;
    display: flex;
    gap: 15px;
}

.user-details small {
    color: #4a5568;
}

.badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge.admin {
    background: #dc3545;
    color: white;
}

.badge.user {
    background: #6c757d;
    color: white;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}

.header h1 {
    color: #25D366;
    font-size: 2rem;
    font-weight: 700;
}

.header h1 i {
    margin-right: 10px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.4);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
    animation: pulse 2s infinite;
}

.status-dot.connected {
    background: #10b981;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.text-muted {
    color: #e4e4e4;
}

.text-danger {
    color: #dc3545;
}

/* Navigation */
.tab-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    padding: 8px;
    border-radius: 16px;
    flex-wrap: wrap;
}

.tab-button {
    flex: 1;
    min-width: 120px;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.tab-button:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.tab-button.active {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Cards */
.card {
    margin: 20px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    margin-bottom: 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    max-width: 100%;
}

.card-header {
    padding: 24px;
    background: rgba(15, 23, 42, 0.6);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h2 {
    color: #f8fafc;
    font-size: 1.5rem;
    font-weight: 700;
}

.card-header h2 i {
    margin-right: 12px;
    color: #10b981;
}

.card-body {
    padding: 24px;
    color: rgba(0, 0, 0, 68%);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    max-width: 100%;
}

.stat-card {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Dynamic colors for pending reminders */
.stat-card.stat-low {
    background: linear-gradient(135deg, #06b6d4, #0891b2) !important;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3) !important;
    border: 1px solid rgba(6, 182, 212, 0.2) !important;
}

.stat-card.stat-medium {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3) !important;
    border: 1px solid rgba(245, 158, 11, 0.2) !important;
}

.stat-card.stat-high {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3) !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
}

.stat-card.stat-none {
    background: linear-gradient(135deg, #696969f7, #00000078) !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
}

.stat-info p {
    opacity: 0.9;
    font-weight: 500;
}

/* Event status colors */
.event-confirmed {
    border-left: 4px solid #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.event-unconfirmed {
    border-left: 4px solid #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.event-free {
    border-left: 4px solid #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.event-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    font-weight: 600;
}

.event-confirmed .event-status {
    color: #10b981;
}

.event-unconfirmed .event-status {
    color: #ef4444;
}

.event-free .event-status {
    color: #3b82f6;
}

.calendar-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    opacity: 0.8;
}

.calendar-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Calendar color indicators */
.calendar-indicator i {
    font-size: 0.7rem;
}

.calendar-badge i {
    font-size: 0.6rem;
}

.calendar-def i { color: #6b7280; }
.calendar-001 i { color: #ef4444; }
.calendar-002 i { color: #f97316; }
.calendar-003 i { color: #eab308; }
.calendar-004 i { color: #22c55e; }
.calendar-005 i { color: #06b6d4; }
.calendar-006 i { color: #3b82f6; }
.calendar-007 i { color: #8b5cf6; }
.calendar-008 i { color: #ec4899; }
.calendar-009 i { color: #f43f5e; }

/* Event Statistics Banner */
.event-stats-banner {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.stats-summary {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #939cad;
    font-weight: 500;
}

.stat-item i {
    font-size: 0.8rem;
}

.stat-item span:first-of-type {
    font-weight: 700;
    color: #ffffff;
}

.stat-item.confirmed {
    color: #10b981;
}

.stat-item.unconfirmed {
    color: #ef4444;
}

.stat-item.free {
    color: #3b82f6;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* Events Container */
.events-container {
    max-height: 400px;
    overflow-y: auto;
}

.event-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.event-item.confirmed {
    border-left: 4px solid #28a745;
}

.event-item.pending {
    border-left: 4px solid #ffc107;
}

.event-item.urgent {
    border-left: 4px solid #dc3545;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.event-title {
    font-weight: 600;
    color: #ebecef;
}

.event-status {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-status.confirmed {
    background: #d4edda;
    color: #155724;
}

.event-status.pending {
    background: #fff3cd;
    color: #856404;
}

.event-date {
    color: rgba(0, 0, 0, 68%)!important;
    font-weight: 500;
}

.calendar-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid;
}

.calendar-badge.calendar-color-0 {
    background: rgba(59, 130, 246, 0.2);
    color: #1e40af;
    border-color: rgba(59, 130, 246, 0.6);
}

.calendar-badge.calendar-color-1 {
    background: rgba(16, 185, 129, 0.2);
    color: #047857;
    border-color: rgba(16, 185, 129, 0.6);
}

.calendar-badge.calendar-color-2 {
    background: rgba(245, 101, 101, 0.2);
    color: #b91c1c;
    border-color: rgba(245, 101, 101, 0.6);
}

.calendar-badge.calendar-color-3 {
    background: rgba(168, 85, 247, 0.2);
    color: #6b21a8;
    border-color: rgba(168, 85, 247, 0.6);
}

.calendar-badge.calendar-color-4 {
    background: rgba(251, 191, 36, 0.2);
    color: #92400e;
    border-color: rgba(251, 191, 36, 0.6);
}

.calendar-badge.calendar-color-5 {
    background: rgba(236, 72, 153, 0.2);
    color: #be185d;
    border-color: rgba(236, 72, 153, 0.6);
}

.calendar-badge.calendar-color-6 {
    background: rgba(6, 182, 212, 0.2);
    color: #0e7490;
    border-color: rgba(6, 182, 212, 0.6);
}

.calendar-badge.calendar-color-7 {
    background: rgba(139, 69, 19, 0.2);
    color: #92400e;
    border-color: rgba(139, 69, 19, 0.6);
}

.calendar-badge.calendar-color-8 {
    background: rgba(75, 85, 99, 0.2);
    color: #374151;
    border-color: rgba(75, 85, 99, 0.6);
}

.calendar-badge.calendar-color-9 {
    background: rgba(34, 197, 94, 0.2);
    color: #15803d;
    border-color: rgba(34, 197, 94, 0.6);
}

/* Colores adicionales para más categorías */
.calendar-badge.calendar-color-10 {
    background: rgba(255, 107, 107, 0.2);
    color: #c53030;
    border-color: rgba(255, 107, 107, 0.6);
}

.calendar-badge.calendar-color-11 {
    background: rgba(72, 187, 120, 0.2);
    color: #2f855a;
    border-color: rgba(72, 187, 120, 0.6);
}

.calendar-badge.calendar-color-12 {
    background: rgba(129, 140, 248, 0.2);
    color: #5145cd;
    border-color: rgba(129, 140, 248, 0.6);
}

.calendar-badge.calendar-color-13 {
    background: rgba(251, 146, 60, 0.2);
    color: #ea580c;
    border-color: rgba(251, 146, 60, 0.6);
}

.calendar-badge.calendar-color-14 {
    background: rgba(196, 181, 253, 0.2);
    color: #7c3aed;
    border-color: rgba(196, 181, 253, 0.6);
}

.calendar-badge.calendar-color-15 {
    background: rgba(34, 211, 238, 0.2);
    color: #0891b2;
    border-color: rgba(34, 211, 238, 0.6);
}

.calendar-badge.calendar-color-16 {
    background: rgba(248, 113, 113, 0.2);
    color: #dc2626;
    border-color: rgba(248, 113, 113, 0.6);
}

.calendar-badge.calendar-color-17 {
    background: rgba(52, 211, 153, 0.2);
    color: #059669;
    border-color: rgba(52, 211, 153, 0.6);
}

.calendar-badge.calendar-color-18 {
    background: rgba(167, 139, 250, 0.2);
    color: #8b5cf6;
    border-color: rgba(167, 139, 250, 0.6);
}

.calendar-badge.calendar-color-19 {
    background: rgba(251, 113, 133, 0.2);
    color: #e11d48;
    border-color: rgba(251, 113, 133, 0.6);
}

/* Help Tab Styles */
.help-content {
    max-width: 800px;
    color: #c3c3c3;
}

.help-content h4 {
    color: #d1d2d2;
}

.help-content h5 {
    color: #cfcfcf;
}

.help-content p {
    color: #cfd0d3;
    line-height: 1.6;
}

.help-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.help-section h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.format-examples {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.format-example {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #10b981;
}

.format-example h4 {
    color: #10b981;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.code-block {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #e2e8f0;
    margin-top: 0.5rem;
}

.help-content .code-block {
    background: #f7fafc;
    color: #2d3748;
    border: 1px solid #e2e8f0;
}

.troubleshooting .issue {
    background: rgba(239, 68, 68, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #ef4444;
    margin-bottom: 1rem;
}

.troubleshooting .issue strong {
    color: #ef4444;
}

/* Preview Modal Styles */
.reminder-preview-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #f9f9f9;
}

.reminder-checkbox {
    margin-right: 15px;
    margin-top: 5px;
}

.reminder-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.reminder-details {
    flex: 1;
}

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

.reminder-phone {
    color: #666;
    font-size: 0.9em;
}

.reminder-template.badge {
    background: #007bff;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8em;
}

.reminder-info {
    margin-bottom: 10px;
    font-size: 0.9em;
    color: #666;
}

.reminder-datetime, .reminder-location {
    margin-bottom: 5px;
}

.reminder-datetime i, .reminder-location i {
    width: 16px;
    margin-right: 8px;
}

.reminder-message {
    margin-top: 10px;
}

.message-preview {
    background: white;
    padding: 10px;
    border-radius: 4px;
    border-left: 3px solid #007bff;
    margin-top: 5px;
    font-style: italic;
}

.preview-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.preview-filters .form-control {
    flex: 1;
    min-width: 200px;
}

.card-header-controls {
    display: flex;
    align-items: center;
}

.preview-content {
    max-height: 600px;
    overflow-y: auto;
}

.calendar-preview {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.calendar-preview h4 {
    color: #3b82f6;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reminder-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    border-left: 3px solid #10b981;
}

.reminder-info {
    flex: 1;
}

.reminder-phone {
    color: #4a5568;
    font-size: 0.85rem;
}

.reminder-status {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.reminder-status.valid {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.reminder-status.invalid {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Error Log Styles */
.error-log {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ef4444;
}

.error-log h4 {
    color: #ef4444;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.error-item {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    border-left: 3px solid #ef4444;
}

.error-item .error-calendar {
    font-weight: 600;
    color: #ef4444;
}

.error-item .error-reason {
    color: #4a5568;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Scheduler Status Fix */
#schedulerStatusText {
    font-weight: 500;
}

.event-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    font-size: 0.9rem;
    color: #4a5568;
}

.event-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

/* Scheduler Controls */
.scheduler-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.scheduler-status {
    padding: 10px;
    background: #f8f9fa;
    color: #2d3748;
    border-radius: 8px;
    font-weight: 600;
}

/* Templates */
.templates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.templates-container {
    max-height: 500px;
    overflow-y: auto;
}

.template-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.template-item:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.template-item.active {
    border-color: #25D366;
    background: rgba(255, 255, 255, 0.773);
}

.template-name {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.template-preview {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.4;
}

.editor-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    min-height: 500px;
}

/* Message Composer */
.message-composer {
    max-width: 600px;
}

.parameters-container {
    display: grid;
    gap: 15px;
    margin: 15px 0;
}

.message-preview {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
    white-space: pre-wrap;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #2d3748;
}

/* Settings */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.setting-group {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.setting-group h3 {
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Form Elements */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #b3b4b6;
}

.templates-list h3,
.template-editor h3 {
    color: #b3b4b6;
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

/* Buttons */
.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: #25D366;
    color: white;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-warning {
    background: #ffc107;
    color: #212529;
}

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

.btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
}

.colors-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.message-item {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    
}

.scheduler-confirmation {
    text-align: center;
}

.scheduler-confirmation h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.scheduler-confirmation p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.confirmation-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 2rem;
}

.modal-content {
    background: white;
    margin: 0;
    padding: 0;
    border-radius: 10px;
    width: 80vw;
    max-width: 900px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
}

/* Modal is now in body, no overrides needed */

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-radius: 10px 10px 0 0;
}

.modal-header h3 {
    color: #2d3748;
    font-weight: 600;
    font-size: 1.3rem;
    margin: 0;
}

.close {
    cursor: pointer;
    float: right;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    opacity: 0.7;
}

.close:hover,
.close:focus {
    color: #dc3545;
    opacity: 1;
}

.modal-body {
    padding: 25px;
    max-height: 60vh;
    overflow-y: auto;
    font-size: 1rem;
}

/* Preview Content Styles */
.preview-content {
    max-height: 50vh;
    overflow-y: auto;
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: #f8f9fa;
    font-size: 0.95rem;
}

.calendar-day {
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    background: white;
    padding: 15px;
}

.calendar-day h4 {
    color: #2d3748;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    font-size: 16px;
}

.reminder-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
}

.reminder-details {
    margin-top: 8px;
}

.reminder-details small {
    font-size: 12px;
    color: #6c757d;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #dee2e6;
    display: flex;
    background: #f8f9fa;
    justify-content: flex-end;
    gap: 10px;
}

/* Loading */
.loading {
    text-align: center;
    padding: 40px;
    color: #4a5568;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
    }
    
    .settings-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .scheduler-controls {
        flex-direction: column;
    }
    
    .tab-button {
        font-size: 0.8rem;
        padding: 10px 12px;
        min-width: 100px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .tab-buttons {
        justify-content: center;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* No Phone Warning */
.no-phone-warning {
    color: #f59e0b !important;
    background: rgba(245, 158, 11, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border-left: 3px solid #f59e0b;
}

.no-phone-warning i {
    color: #f59e0b;
}

/* Reports Tab Styles */
.reports-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
    max-width: 100%;
}

.report-controls select {
    min-width: 200px;
}

.commission-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 40px;
}

.commission-table th,
.commission-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    color: #6c757d;
}

.report-header {
    color: #acadae;
}

.commission-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.commission-table .professional-name {
    font-weight: 600;
    color: #6c757d;
    font-size: 2em;
}

.commission-table .event-type {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 5px;
}

.event-type.adulto { background-color: #e3f2fd; color: #1976d2; }
.event-type.menor { background-color: #f3e5f5; color: #7b1fa2; }
.event-type.presencial { background-color: #e8f5e8; color: #388e3c; }
.event-type.pareja { background-color: #fff3e0; color: #f57c00; }
.event-type.adiccion { background-color: #fce4ec; color: #c2185b; }
.event-type.extranjero { background-color: #f1f8e9; color: #689f38; }
.event-type.abuso { background-color: #ffebee; color: #d32f2f; }
.event-type.riesgo { background-color: #fff8e1; color: #f57c00; }
.event-type.corazon { background-color: #fce4ec; color: #e91e63; }
.event-type.terapia_grupal { background-color: #e8f5e8; color: #4caf50; }
.event-type.terapia_grupo { background-color: #e8f5e8; color: #4caf50; }

.commission-summary {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.commission-summary h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
}

.summary-row.total {
    font-weight: 600;
    font-size: 1.1em;
    border-top: 2px solid #dee2e6;
    padding-top: 10px;
    margin-top: 10px;
}

.monthly-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.monthly-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.monthly-card h5 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
}

/* Dark mode styles */
body.dark-mode {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .container {
    background-color: #2d2d2d;
    border: 1px solid #444;
}

body.dark-mode .nav-tabs .nav-link {
    background-color: #3a3a3a;
    color: #e0e0e0;
    border-color: #555;
}

body.dark-mode .nav-tabs .nav-link.active {
    background-color: #4a4a4a;
    color: #fff;
    border-color: #666;
}

body.dark-mode .card {
    background-color: #3a3a3a;
    border-color: #555;
    color: #e0e0e0;
}

body.dark-mode .card-header {
    background-color: #4a4a4a;
    border-color: #666;
    color: #fff;
}

body.dark-mode .card-title {
    color: #fff;
}

body.dark-mode .btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

body.dark-mode .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

body.dark-mode .btn-success {
    background-color: #198754;
    border-color: #198754;
    color: #fff;
}

body.dark-mode .btn-info {
    background-color: #0dcaf0;
    border-color: #0dcaf0;
    color: #000;
}

body.dark-mode .form-control {
    background-color: #2d2d2d;
    border-color: #555;
    color: #e0e0e0;
}

body.dark-mode .form-control:focus {
    background-color: #2d2d2d;
    border-color: #0d6efd;
    color: #e0e0e0;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

body.dark-mode .form-select {
    background-color: #2d2d2d;
    border-color: #555;
    color: #e0e0e0;
}

body.dark-mode .form-select:focus {
    background-color: #2d2d2d;
    border-color: #0d6efd;
    color: #e0e0e0;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

body.dark-mode .table {
    color: #e0e0e0;
}

body.dark-mode .table-striped > tbody > tr:nth-of-type(odd) > td,
body.dark-mode .table-striped > tbody > tr:nth-of-type(odd) > th {
    background-color: #2d2d2d;
}

body.dark-mode .table th,
body.dark-mode .table td {
    border-color: #555;
}

body.dark-mode .table thead th {
    color: #fff;
    background-color: #4a4a4a;
}

body.dark-mode .alert-info {
    background-color: #1e3a5f;
    border-color: #2c5aa0;
    color: #b8daff;
}

body.dark-mode .alert-warning {
    background-color: #664d03;
    border-color: #997404;
    color: #ffecb5;
}

body.dark-mode .alert-success {
    background-color: #0f5132;
    border-color: #146c43;
    color: #d1e7dd;
}

body.dark-mode .alert-danger {
    background-color: #721c24;
    border-color: #a02834;
    color: #f8d7da;
}

body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, 
body.dark-mode h4, body.dark-mode h5, body.dark-mode h6 {
    color: #fff;
}

body.dark-mode p, body.dark-mode span, body.dark-mode div {
    color: #e0e0e0;
}

body.dark-mode .text-muted {
    color: #adb5bd !important;
}

body.dark-mode .text-primary {
    color: #6ea8fe !important;
}

body.dark-mode .text-success {
    color: #75b798 !important;
}

body.dark-mode .text-warning {
    color: #ffda6a !important;
}

body.dark-mode .text-danger {
    color: #ea868f !important;
}

body.dark-mode .badge {
    color: #fff;
}

body.dark-mode .list-group-item {
    background-color: #3a3a3a;
    border-color: #555;
    color: #e0e0e0;
}

/* Pricing configuration styles */
.pricing-controls {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pricing-config-content {
    margin-top: 20px;
}

.professional-section {
    margin-bottom: 50px;
    padding: 20px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.pricing-section {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: #f8f9fa;
}

.pricing-section h3 {
    margin-bottom: 15px;
    color: #495057;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 15px;
    max-width: 100%;
}

.pricing-item {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 15px;
}

.pricing-item h4 {
    margin-bottom: 10px;
    color: #495057;
    font-size: 1.1em;
}

.pricing-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pricing-inputs label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.pricing-inputs input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

.professional-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.professional-selector select {
    flex: 1;
    max-width: 300px;
}

.professional-overrides {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.professional-override {
    border: 2px solid #007bff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f8f9fa;
}

.professional-override h4 {
    color: #007bff;
    margin-bottom: 10px;
}

.override-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: bold;
    margin-left: 8px;
}

.override-badge.default {
    background-color: #6c757d;
    color: white;
}

.override-badge.custom {
    background-color: #28a745;
    color: white;
}

.override-actions {
    margin-top: 10px;
    text-align: right;
}

.btn-save-override {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
}

.btn-save-override:hover {
    background-color: #218838;
}

.template-selector {
    margin-bottom: 20px;
    padding: 15px;
}

.template-selector-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.template-selector-container select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
}

.template-selector-container select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.editor-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: right;
}

.editor-actions .btn {
    margin-left: 10px;
}

/* Dark mode pricing styles */
body.dark-mode .pricing-section {
    background: #2d3748;
    border-color: #4a5568;
}

body.dark-mode .pricing-section h3 {
    color: #e2e8f0;
    border-bottom-color: #4299e1;
}

body.dark-mode .pricing-item,
body.dark-mode .professional-override {
    background: #1a202c;
    border-color: #4a5568;
}

body.dark-mode .pricing-item h4,
body.dark-mode .professional-override h4 {
    color: #e2e8f0;
}

body.dark-mode .pricing-inputs input {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
}

body.dark-mode .pricing-inputs label {
    color: #e2e8f0;
}

/* Discount action button styles */
.discount-actions {
    margin-top: 15px;
    text-align: center;
    padding: 10px;
}

.add-discount-btn {
    background-color: transparent;
    border: 1px solid #007bff;
    color: #007bff;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.add-discount-btn:hover {
    background-color: #007bff;
    color: white;
}

/* Discount row styles */
.discount-row {
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
}

.discount-row td {
    padding: 12px 8px;
    vertical-align: middle;
}

.discount-label {
    font-style: italic;
    color: #495057;
    font-weight: 500;
}

.remove-discount-btn {
    padding: 2px 6px;
    font-size: 12px;
    border-radius: 3px;
}

/* Dark mode styles for discount elements */
body.dark-mode .discount-actions {
    background-color: #2d3748;
}

body.dark-mode .add-discount-btn {
    border-color: #4299e1;
    color: #4299e1;
}

body.dark-mode .add-discount-btn:hover {
    background-color: #4299e1;
    color: white;
}

body.dark-mode .discount-row {
    background-color: #2d3748;
    border-left-color: #4299e1;
}

body.dark-mode .discount-label {
    color: #e2e8f0;
}

/* Old discount section styles (keeping for compatibility) */
.discount-section {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.discount-section h6 {
    margin-bottom: 15px;
    color: #495057;
    font-weight: 600;
}

.discount-inputs {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
    margin-bottom: 15px;
}

.discount-item {
    display: flex;
    flex-direction: column;
}

.discount-item label {
    font-weight: 500;
    margin-bottom: 5px;
    color: #495057;
}

.discount-item input {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

.discount-item input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.final-amount {
    text-align: right;
    padding: 10px;
    background-color: #e9ecef;
    border-radius: 4px;
    border: 2px solid #007bff;
}

.final-amount strong {
    font-size: 16px;
    color: #007bff;
}

/* Dark mode styles for discount section */
body.dark-mode .discount-section {
    background-color: #2d3748;
    border-left-color: #4299e1;
}

body.dark-mode .discount-section h6 {
    color: #e2e8f0;
}

body.dark-mode .discount-item label {
    color: #e2e8f0;
}

body.dark-mode .discount-item input {
    background-color: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
}

body.dark-mode .discount-item input:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 0.2rem rgba(66, 153, 225, 0.25);
}

body.dark-mode .final-amount {
    background-color: #1a202c;
    border-color: #4299e1;
}

body.dark-mode .final-amount strong {
    color: #4299e1;
}

/* Custom Alert System */
.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
}

.alert-content {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.alert-message {
    flex: 1;
    font-weight: 500;
}

.alert-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.alert-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Alert Types */
.alert-success {
    background: #10b981;
    color: white;
}

.alert-danger {
    background: #ef4444;
    color: white;
}

.alert-warning {
    background: #f59e0b;
    color: white;
}

.alert-info {
    background: #3b82f6;
    color: white;
}

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