/* BB&N Investment Club - Blackstone Inspired Minimalist Design */

:root {
    --bbn-blue: #1e3a8a;
    --bbn-navy: #1e293b;
    --bbn-gold: #d4af37;
    --bbn-black: #1A1A1A;
    --bbn-light-blue: #f1f5f9;
    --bbn-soft-gray: #E5E5E5;
    --bbn-border: #e9ecef;
    --bbn-text: #212529;
    --bbn-text-muted: #6c757d;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: var(--bbn-text);
    line-height: 1.6;
    font-size: 16px;
}

/* Typography hierarchy */
.font-heading {
    font-family: 'Georgia', 'Times New Roman', serif;
}

.font-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Enhanced card styling */
.professional-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(30, 58, 138, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 1px 3px rgba(30, 58, 138, 0.06),
        0 1px 2px rgba(30, 58, 138, 0.04);
}

.professional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--bbn-blue), var(--bbn-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.professional-card:hover::before {
    transform: scaleX(1);
}

.professional-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(30, 58, 138, 0.12),
        0 8px 16px rgba(30, 58, 138, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

/* BB&N Header */
.nav-enhanced {
    background: var(--bbn-blue);
    border-bottom: 2px solid var(--bbn-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0;
}

.nav-enhanced .logo-text {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-enhanced .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav-enhanced .nav-link:hover {
    color: #ffffff;
}

/* BB&N Buttons */
.btn-gold {
    background: var(--bbn-gold);
    border: none;
    color: var(--bbn-black);
    padding: 12px 24px;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: opacity 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold:hover {
    opacity: 0.9;
    color: var(--bbn-black);
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: #ffffff;
    color: var(--bbn-blue);
    text-decoration: none;
}

.btn-primary {
    background: var(--bbn-blue);
    border: none;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: opacity 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    opacity: 0.9;
    color: #ffffff;
    text-decoration: none;
}

/* Typography */
.section-title {
    font-family: 'Georgia', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bbn-black);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--bbn-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-title {
    font-family: 'Georgia', serif;
    font-weight: 700;
    color: var(--bbn-black);
    font-size: 3rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--bbn-text-muted);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Section backgrounds */
.section-light-blue {
    background: var(--bbn-light-blue);
    position: relative;
}

.section-light-gray {
    background: var(--bbn-light-blue);
    position: relative;
}

.section-light-blue::before,
.section-light-gray::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(30, 58, 138, 0.15) 50%, transparent 100%);
}

/* Photo Carousel Header */
.photo-carousel-header {
    background: #000;
    position: relative;
    margin: 0;
    padding: 0;
}

.carousel-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    background: #000;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background: #000;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Carousel overlay and content */
.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 3rem 2rem 2rem;
    z-index: 5;
}

.carousel-content {
    max-width: 600px;
}

.carousel-title {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Carousel hero styling */
.carousel-hero-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bbn-blue) 0%, var(--bbn-navy) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-hero-bg.secondary {
    background: linear-gradient(135deg, var(--bbn-navy) 0%, var(--bbn-blue) 100%);
}

.carousel-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><polygon points="36 34 24 34 24 26 36 26"/></g></svg>') repeat;
    opacity: 0.5;
}

.carousel-hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 600px;
    padding: 2rem;
}

.carousel-hero-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--bbn-gold);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.carousel-hero-title {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    color: white;
}

.carousel-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.95);
}

.carousel-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: var(--bbn-blue);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.indicator.active,
.indicator:hover {
    background: var(--bbn-gold);
    border-color: white;
    transform: scale(1.2);
}

/* Responsive carousel */
@media (max-width: 768px) {
    .carousel-container {
        padding: 1rem 0.5rem;
    }
    
    .carousel-slides {
        height: 250px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 0.5rem;
    }
    
    .carousel-next {
        right: 0.5rem;
    }
    
    .carousel-title {
        font-size: 1.25rem;
    }
    
    .carousel-subtitle {
        font-size: 0.875rem;
    }
    
    .carousel-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .carousel-hero-title {
        font-size: 1.75rem;
    }
    
    .carousel-hero-subtitle {
        font-size: 1rem;
    }
    
    .carousel-hero-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .carousel-hero-content {
        padding: 1.5rem;
    }
    
    .carousel-main-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }
    
    .carousel-main-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}


/* Hero section enhancements */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        letter-spacing: 2px;
    }
    
    .search-container {
        max-width: 300px;
    }
    
    .search-input {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .search-button {
        padding: 14px 16px;
    }
    
    .professional-card {
        margin-bottom: 1rem;
    }
    
    .professional-card .p-8 {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
}

/* Admin Dashboard Styles */
.admin-container {
    background: var(--bbn-light-blue);
    min-height: calc(100vh - 64px);
}

.admin-card {
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(30, 58, 138, 0.08);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.06);
    overflow: hidden;
}

.admin-card-header {
    background: linear-gradient(135deg, var(--bbn-blue), var(--bbn-navy));
    color: white;
    padding: 1rem 1.5rem;
    border-bottom: none;
}

.admin-table {
    border: none;
}

.admin-table th {
    background: var(--bbn-light-blue);
    border: none;
    color: var(--bbn-blue);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    padding: 1rem;
}

.admin-table td {
    border: none;
    border-bottom: 1px solid rgba(30, 58, 138, 0.08);
    padding: 1rem;
    vertical-align: middle;
}

.admin-table tbody tr:hover {
    background: rgba(30, 58, 138, 0.02);
}

.admin-form .form-control {
    border: 2px solid var(--bbn-soft-gray);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.admin-form .form-control:focus {
    border-color: var(--bbn-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

.admin-form .form-label {
    font-weight: 600;
    color: var(--bbn-blue);
    margin-bottom: 0.5rem;
}

.admin-badge {
    background: var(--bbn-light-blue);
    color: var(--bbn-blue);
    border: 1px solid rgba(30, 58, 138, 0.2);
    border-radius: 12px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced button interactions */
.btn-gold:active {
    transform: scale(0.98);
}

.btn-outline:active {
    transform: scale(0.98);
}

.btn-primary:active {
    transform: scale(0.98);
}

/* Loading states */
.skeleton {
    background: linear-gradient(90deg, var(--bbn-light-gray) 25%, var(--bbn-soft-gray) 50%, var(--bbn-light-gray) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Enhanced search bar */
.search-container {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    border: 2px solid var(--bbn-soft-gray);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.06);
    transition: all 0.3s ease;
}

.search-container:focus-within {
    border-color: var(--bbn-gold);
    box-shadow: 
        0 4px 16px rgba(30, 58, 138, 0.1),
        0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    background: transparent;
    color: var(--bbn-black);
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-button {
    background: var(--bbn-blue);
    color: white;
    border: none;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    background: var(--bbn-black);
    transform: scale(1.05);
}

/* Smooth fade-in animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-delay-1 {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.animate-fade-in-delay-3 {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Base styles */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Smooth transitions */
.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}

/* Custom hover effects */
.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Speaker card enhancements */
.speaker-card {
    transition: all 0.2s ease-in-out;
}

.speaker-card:hover {
    transform: translateY(-2px);
}

/* Admin table styles */
.admin-table {
    border-collapse: separate;
    border-spacing: 0;
}

.admin-table th {
    position: sticky;
    top: 0;
    background-color: #f9fafb;
    z-index: 10;
}

/* Form enhancements */
.form-input:focus {
    ring-color: #3b82f6;
    ring-width: 2px;
    border-color: #3b82f6;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Email preview styles */
.email-preview {
    font-family: 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Mobile Navigation Fixes */
@media (max-width: 768px) {
    /* Navigation bar height adjustment */
    .nav-enhanced .flex.justify-between.items-center {
        height: 64px !important;
        min-height: 64px !important;
    }
    
    /* Logo and text adjustments */
    .nav-enhanced .logo-text h1 {
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
        letter-spacing: 1px !important;
    }
    
    .nav-enhanced .logo-text p {
        font-size: 0.7rem !important;
        letter-spacing: 1px !important;
    }
    
    .nav-enhanced img {
        height: 2.5rem !important;
        width: 2.5rem !important;
    }
    
    .nav-enhanced .space-x-4 > :not([hidden]) ~ :not([hidden]) {
        margin-left: 0.75rem !important;
    }
    
    /* Navigation links container */
    .nav-enhanced .flex.items-center.space-x-6 {
        gap: 0.5rem !important;
    }
    
    .nav-enhanced .space-x-6 > :not([hidden]) ~ :not([hidden]) {
        margin-left: 0 !important;
    }
    
    /* Speakers link */
    .nav-enhanced a[href*="index"]:not(.btn-gold):not([class*="bg-white"]) {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.8rem !important;
        font-weight: 500 !important;
    }
    
    /* Speak With Us button */
    .nav-enhanced .btn-gold {
        padding: 0.4rem 0.75rem !important;
        font-size: 0.7rem !important;
        letter-spacing: 0.5px !important;
    }
    
    .nav-enhanced .btn-gold i {
        font-size: 0.7rem !important;
        margin-right: 0.25rem !important;
    }
    
    /* Admin button */
    .nav-enhanced .bg-white {
        padding: 0.4rem 0.75rem !important;
        font-size: 0.7rem !important;
    }
    
    .nav-enhanced .bg-white i {
        font-size: 0.7rem !important;
        margin-right: 0.25rem !important;
    }
}

/* Extra small mobile devices navigation */
@media (max-width: 480px) {
    .nav-enhanced .logo-text h1 {
        font-size: 0.8rem !important;
    }
    
    .nav-enhanced .logo-text p {
        font-size: 0.65rem !important;
    }
    
    .nav-enhanced .btn-gold {
        padding: 0.35rem 0.6rem !important;
        font-size: 0.65rem !important;
    }
    
    .nav-enhanced .bg-white {
        padding: 0.35rem 0.6rem !important;
        font-size: 0.65rem !important;
    }
    
    .nav-enhanced a[href*="index"]:not(.btn-gold):not([class*="bg-white"]) {
        font-size: 0.75rem !important;
        padding: 0.25rem 0.4rem !important;
    }
}

/* Responsive design helpers */
@media (max-width: 768px) {
    .mobile-stack {
        flex-direction: column;
    }
    
    .mobile-full {
        width: 100%;
    }
    
    .mobile-text-center {
        text-align: center;
    }
    
    /* Hero section mobile improvements */
    .hero-section {
        padding: 2rem 0 !important;
    }
    
    .hero-title {
        font-size: 2.25rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 2rem !important;
        padding: 0 1rem;
    }
    
    /* Newsletter section mobile improvements */
    .newsletter-section {
        padding: 3rem 0 !important;
    }
    
    .newsletter-section h2 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    
    .newsletter-section p {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        padding: 0 1rem;
    }
    
    .newsletter-section .fas.fa-envelope {
        font-size: 3rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Professional cards mobile improvements */
    .professional-card {
        margin-bottom: 1.5rem;
    }
    
    .professional-card .p-8 {
        padding: 1.5rem !important;
    }
    
    .professional-card h3 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .professional-card .flex.items-center.mb-8 {
        margin-bottom: 1.5rem !important;
        flex-direction: column;
        text-align: center;
    }
    
    .professional-card .ml-6 {
        margin-left: 0 !important;
        margin-top: 1rem;
    }
    
    /* Search container mobile */
    .search-container {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .search-input {
        border-radius: 0.5rem !important;
        margin-bottom: 0.5rem;
    }
    
    .search-button {
        border-radius: 0.5rem !important;
        width: 100%;
        justify-content: center;
    }
    
    /* Section spacing mobile */
    .section-light-blue {
        padding: 2rem 0 !important;
        margin-bottom: 2rem !important;
    }
    
    .section-title {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }
    
    .section-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        padding: 0 1rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem !important;
    }
    
    .newsletter-section h2 {
        font-size: 1.5rem !important;
    }
    
    .professional-card .p-8 {
        padding: 1rem !important;
    }
    
    .carousel-slides {
        height: 200px !important;
    }
    
    .carousel-title {
        font-size: 1.125rem !important;
    }
    
    .carousel-subtitle {
        font-size: 0.8rem !important;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none;
    }
    
    .print-break {
        page-break-before: always;
    }
}

/* Accessibility improvements */
.focus\:ring-2:focus {
    ring-width: 2px;
}

.focus\:ring-blue-500:focus {
    ring-color: #3b82f6;
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

/* Status indicators */
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.status-sent {
    background-color: #10b981;
}

.status-draft {
    background-color: #f59e0b;
}

.status-error {
    background-color: #ef4444;
}

/* Utility classes */
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shadow-smooth {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

/* Custom scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

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