/* ========================================
   FC App - Unified Styles
   Combined styles for Home, About, and Meetings pages
   ======================================== */

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

/* Common Gradients */
.gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.gradient-white {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Common Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.container-padded {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

@media (max-width: 768px) {
    .container-padded {
        max-width: 100%;
        padding: 1rem;
        margin: 0;
    }
}

@media (max-width: 576px) {
    .container-padded {
        padding: 0.75rem;
    }
}

/* Common Sections */
.section {
    padding: 80px 20px;
}

.section-light {
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-white {
    padding: 80px 20px;
    background: white;
}

/* Common Cards */
.card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-light {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.card-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-compact {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.card-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Common Grids */
.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.grid-auto-fit-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.grid-auto-fit-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.grid-auto-fit-medium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Common Text Styles */
.text-center {
    text-align: center;
}

.text-primary {
    color: #667eea;
}

.text-muted {
    color: #666;
}

.text-dark {
    color: #333;
}

/* Common Titles */
.title-large {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
}

.title-medium {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.title-small {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

/* Common Icons */
.icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.icon-medium {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* Common Overlays */
.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.overlay > * {
    position: relative;
    z-index: 2;
}

/* ========================================
   SEARCH DROPDOWN STYLES
   ======================================== */

/* Search dropdown menu */
.search-dropdown {
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 1050;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: none;
    background: white;
}

/* Search dropdown item */
.search-dropdown-item {
    border: none;
    padding: 12px 16px;
    text-align: left;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
    background: white;
    width: 100%;
    display: block;
}

.search-dropdown-item:hover {
    background-color: #f8f9fa;
    transform: translateX(2px);
}

.search-dropdown-item:focus {
    background-color: #e9ecef;
    outline: none;
    box-shadow: inset 2px 0 0 #667eea;
}

.search-dropdown-item:active {
    background-color: #dee2e6;
}

/* No results message */
.search-no-results {
    text-align: center;
    padding: 24px;
    border-radius: 8px;
    background: white;
}

.search-no-results .search-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #6c757d;
}

/* Person name styling in dropdown */
.person-name {
    font-weight: 500;
    color: #212529;
    margin-bottom: 4px;
}

.person-email {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Common Positioning */
.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

/* Common Flex */
.flex {
    display: flex;
}

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

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

.flex-gap {
    gap: 2.5rem;
}

.flex-gap-small {
    gap: 1rem;
}

.flex-gap-medium {
    gap: 1.5rem;
}

/* Common Spacing */
.mb-3 {
    margin-bottom: 3rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mt-3 {
    margin-top: 3rem;
}

/* Common Line Heights */
.line-height-relaxed {
    line-height: 1.6;
}

/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* Hero Section */
.hero-section {
    color: white;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.global-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
}

.hero-nav {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.hero-logo {
    width: 20%;
}

.hamburger-menu {
    position: relative;
}

.hamburger-btn {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 0, 0, 0.5);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hamburger-btn:hover {
    background: rgba(0, 0, 0, 0.2);
}

.hamburger-line {
    width: 25px;
    height: 4px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.dropdown-link {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background: rgba(103, 126, 234, 0.1);
    color: #667eea;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 12px 24px;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

.hero-graphic {
    text-align: center;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

/* Features Section - uses utility classes */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-size: 1rem;
}

.feature-card p {
    font-size: 1rem;
}

/* Quick Actions Section - uses utility classes */
.action-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.action-card .k-card-header {
    color: white;
    padding: 1.5rem;
}

.action-card .k-card-body {
    padding: 1.5rem;
}

.action-card .k-card-body p {
    margin-bottom: 1.5rem;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* Header Section - uses utility classes */
.about-header {
    padding: 2rem 0;
    color: white;
    border-radius: 12px;
}

.about-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* Content Sections - uses utility classes */
.info-section h2 {
    display: flex;
    align-items: center;
}

.info-section h2 i {
    color: #667eea;
}

/* Info Grid - uses utility classes */
.info-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
}

/* User Information - uses utility classes */
.user-info-card {
    align-items: center;
    margin-right: 2rem;
}

.user-details {
    flex: 1;
}

.user-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.user-meta {
    gap: 0.5rem;
}

.user-field {
    align-items: center;
}

.field-label {
    font-weight: 500;
    min-width: 80px;
    margin-right: 1rem;
}

.field-value {
    font-family: 'Courier New', monospace;
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    font-size: 0.9rem;
}

/* Support Grid - uses utility classes */
.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.support-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.support-card p {
    margin-bottom: 1.5rem;
}

.support-card .btn {
    margin-bottom: 0.5rem;
}

.support-card small {
    display: block;
    font-style: italic;
}

/* Contact Info - uses utility classes */
.contact-info {
    gap: 0.75rem;
    margin-top: 1rem;
}

.contact-item {
    justify-content: center;
    font-size: 0.95rem;
}

.contact-item i {
    width: 20px;
}

/* Status Grid - uses utility classes */
.status-grid {
    gap: 1rem;
}

.status-item {
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.status-item:hover {
    background: #e9ecef;
}

.status-item i {
    margin-right: 1rem;
    font-size: 0.75rem;
}

.status-item span:first-of-type {
    flex: 1;
    font-weight: 500;
}

.status-label {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-online i {
    color: #28a745;
}

.status-online .status-label {
    background: #d4edda;
    color: #155724;
}

.status-offline i {
    color: #dc3545;
}

.status-offline .status-label {
    background: #f8d7da;
    color: #721c24;
}

.status-warning i {
    color: #ffc107;
}

.status-warning .status-label {
    background: #fff3cd;
    color: #856404;
}

/* Alert Styles */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
}

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

/* ========================================
   MEETINGS PAGE STYLES
   ======================================== */

.custom-switch-container {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.custom-switch {
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 34px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05);
    border: 2px solid #ced4da;
}

.custom-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.custom-switch:checked + .custom-slider {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-color: #28a745;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 2px 12px rgba(40, 167, 69, 0.3), 0 0 20px rgba(40, 167, 69, 0.2);
}

.custom-switch:focus + .custom-slider {
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05), 0 0 0 3px rgba(40, 167, 69, 0.25);
}

.custom-switch:checked + .custom-slider:before {
    transform: translateX(26px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2), 0 1px 4px rgba(0,0,0,0.15);
}

.custom-slider:hover {
    transform: scale(1.02);
}

.custom-switch:checked + .custom-slider:hover {
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
}

/* Follow-up Card - uses utility classes */
.follow-up-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.follow-up-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.follow-up-card .card-title {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1rem;
    align-items: center;
    gap: 0.5rem;
}

.follow-up-card .card-title i {
    color: #6c757d;
    font-size: 1.1em;
}

.follow-up-enabled {
    color: #28a745 !important;
}

.follow-up-enabled i {
    color: #28a745 !important;
}

/* Follow-up Slider Styles */
.follow-up-slider-container {
    width: 120px;
    position: relative;
}

.follow-up-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 20px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    outline: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #ced4da;
}

.follow-up-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    cursor: pointer;
    border: 2px solid #667eea;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.follow-up-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    cursor: pointer;
    border: 2px solid #667eea;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.follow-up-slider:hover {
    background: linear-gradient(135deg, #dee2e6 0%, #ced4da 100%);
    transform: scale(1.02);
}

.follow-up-slider:hover::-webkit-slider-thumb {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(0,0,0,0.2), 0 2px 6px rgba(0,0,0,0.15);
}

.follow-up-slider:hover::-moz-range-thumb {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(0,0,0,0.2), 0 2px 6px rgba(0,0,0,0.15);
}

.follow-up-slider[value="1"] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-color: #28a745;
    box-shadow: 0 2px 12px rgba(40, 167, 69, 0.3), 0 0 20px rgba(40, 167, 69, 0.2);
}

.follow-up-slider[value="1"]::-webkit-slider-thumb {
    border-color: #28a745;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2), 0 1px 4px rgba(0,0,0,0.15);
}

.follow-up-slider[value="1"]::-moz-range-thumb {
    border-color: #28a745;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2), 0 1px 4px rgba(0,0,0,0.15);
}

.slider-labels {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    width: 100%;
}

/* ========================================
   SHARED ANIMATIONS
   ======================================== */

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ========================================
   MEETINGS PAGE SPECIFIC STYLES
   ======================================== */

.meetings-icon {
    font-size: 3rem;
}

.meetings-title {
    color: #667eea;
    font-weight: 600;
}

/* Enhanced Layout Spacing */
.container-padded .row {
    margin-left: -1rem;
    margin-right: -1rem;
    gap: 0;
}

.container-padded .col-md-6 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.person-avatar-small {
    object-fit: cover;
}

.form-control-modern {
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    background: #ffffff !important;
}

.form-control-modern:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
    outline: none !important;
}

.form-control-modern.textarea {
    resize: vertical !important;
    min-height: 120px !important;
}

.btn-submit-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 16px 32px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.btn-submit-modern:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
}

.hidden {
    display: none;
}

/* Gradient Header */
.gradient-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 3rem 2rem !important;
    text-align: center !important;
    border-radius: 15px !important;
    margin-bottom: 2rem !important;
}

/* Search Panel */
.search-panel {
    background: #f8f9fa !important;
    border-radius: 10px !important;
    padding: 2rem !important;
    height: fit-content !important;
    min-height: 500px !important;
}

/* Person Card */
.person-card {
    background: white !important;
    border-radius: 10px !important;
    padding: 1.5rem !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    margin-bottom: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.person-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
}

/* Select Person Panel */
.select-person-panel {
    background: #f8f9fa !important;
    border-radius: 10px !important;
    padding: 3rem 2rem !important;
    text-align: center !important;
    min-height: 500px !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Hide on mobile and tablet */
.select-person-panel.d-none {
    display: none !important;
}

@media (min-width: 992px) {
    .select-person-panel.d-lg-flex {
        display: flex !important;
    }
}

.person-icon {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Search Input */
.search-input {
    border: none !important;
    border-radius: 25px !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
}

.search-input:focus {
    outline: none !important;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3) !important;
    transform: translateY(-1px) !important;
}

/* Enhanced Form Styling with higher specificity */
.container-padded .form-control,
.search-panel .form-control,
.person-card .form-control {
    border-radius: 8px !important;
    border: 2px solid #e9ecef !important;
    transition: all 0.3s ease !important;
}

.container-padded .form-select,
.search-panel .form-select,
.person-card .form-select {
    border-radius: 8px !important;
    border: 2px solid #e9ecef !important;
    transition: all 0.3s ease !important;
}

.container-padded .btn-primary,
.search-panel .btn-primary,
.person-card .btn-primary {
    border-radius: 8px !important;
    font-weight: 600 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.container-padded .form-label,
.search-panel .form-label,
.person-card .form-label {
    font-weight: 600 !important;
    color: #495057 !important;
    margin-bottom: 0.5rem !important;
}

.container-padded .form-control:focus,
.search-panel .form-control:focus,
.person-card .form-control:focus,
.container-padded .form-select:focus,
.search-panel .form-select:focus,
.person-card .form-select:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25) !important;
    transform: translateY(-1px) !important;
}

.container-padded .form-control:hover,
.search-panel .form-control:hover,
.person-card .form-control:hover,
.container-padded .form-select:hover,
.search-panel .form-select:hover,
.person-card .form-select:hover {
    border-color: #667eea !important;
    transform: translateY(-1px) !important;
}

.container-padded .btn-primary:hover,
.search-panel .btn-primary:hover,
.person-card .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4c93 100%) !important;
}

.container-padded .form-label,
.search-panel .form-label,
.person-card .form-label {
    margin-bottom: 0.75rem !important;
}

/* Loading Overlay */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    z-index: 10;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.freedom-logo-spinner {
    width: 50px;
    height: 50px;
    animation: pulse 1.5s ease-in-out infinite;
}

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

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

/* Modern Selected Person Card Styles */
.selected-person-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 1px solid #e1e5f2;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 500px;
}

.selected-person-card:hover {
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.12);
    transform: translateY(-2px);
}

.person-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.person-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin-right: 16px;
}

.person-avatar-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-right: 16px;
}

.person-info {
    flex: 1;
}

.person-name {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.person-email {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.person-email i {
    margin-right: 8px;
    opacity: 0.8;
}

.btn-close-modern {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-close-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-1px);
}

.info-section {
    padding: 24px;
    border-bottom: 1px solid #f0f2f8;
}

.info-section:last-child {
    border-bottom: none;
}

.section-title {
    display: flex;
    align-items: center;
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
}

.section-title i {
    margin-right: 8px;
    color: #667eea;
    width: 16px;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #f8f9ff;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.info-item i {
    color: #667eea;
    width: 16px;
    margin-right: 12px;
}

.info-item span {
    color: #2d3748;
    font-weight: 500;
}

.details-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f2f8;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: #718096;
    font-size: 14px;
}

.detail-value {
    font-weight: 600;
    color: #2d3748;
    font-size: 14px;
}

.groups-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.group-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}

.action-section {
    padding: 24px;
    background: #f8f9ff;
    text-align: center;
}

.btn-schedule-meeting {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-schedule-meeting:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-schedule-meeting i {
    font-size: 18px;
}

/* Meeting Form Card Styles */
.meeting-form-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 500px;
}

.meeting-form-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meeting-form-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 20px;
}

.meeting-form-title h4 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.meeting-form-title p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.meeting-form-body {
    padding: 2.5rem;
    min-height: 400px;
}

.meeting-form-body .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.meeting-form-body .form-label i {
    color: #667eea;
    margin-right: 8px;
    width: 16px;
}

.meeting-form-body .form-control,
.meeting-form-body .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.meeting-form-body .form-control:focus,
.meeting-form-body .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.meeting-form-body .form-control-lg {
    padding: 16px 20px;
    font-size: 1.1rem;
}

.meeting-form-body .form-select-lg {
    padding: 16px 20px;
    font-size: 1.1rem;
}

.meeting-form-body textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Full width styles for meeting form fields */
.meeting-form-body .form-control-modern.textarea,
.meeting-form-body .form-control-modern {
    width: 100% !important;
    max-width: 100% !important;
}

.meeting-form-body .mb-4 {
    width: 100% !important;
}

/* Specific full width for key fields */
.meeting-form-body textarea[placeholder*="Who else"],
.meeting-form-body input[placeholder*="location"],
.meeting-form-body textarea[placeholder*="We met briefly"] {
    width: 100% !important;
    max-width: 100% !important;
}

.meeting-form-body .alert {
    border-radius: 12px;
    border: none;
    padding: 16px 20px;
}

.meeting-form-body .alert-info {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
}

.meeting-form-body .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.meeting-form-body .btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* ========================================
   REPORTS PAGE SPECIFIC STYLES
   ======================================== */

/* Modern Meeting Details Modal Styles */
.meeting-details-modal .k-window-content {
    padding: 0;
    background: #f8f9fa;
}

.meeting-details-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    margin: 0;
    border-radius: 8px 8px 0 0;
}

.meeting-details-header .header-icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    opacity: 0.9;
}

.meeting-details-header h4 {
    margin: 0;
    font-weight: 600;
    font-size: 1.25rem;
}

.meeting-details-body {
    padding: 2rem;
    background: white;
    margin: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.detail-section {
    margin-bottom: 1.5rem;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.detail-label i {
    margin-right: 0.5rem;
    color: #667eea;
    width: 16px;
    text-align: center;
}

.detail-value {
    font-size: 1rem;
    color: #212529;
    margin-bottom: 0;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.notes-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.notes-content {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
    min-height: 60px;
}

.attendees-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.follow-up-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
}

.follow-up-badge i {
    margin-right: 0.5rem;
}

.follow-up-required {
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    color: #212529;
}

.follow-up-not-required {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.meeting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

@media (max-width: 768px) {
    /* Home Page Responsive */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 60px 20px;
        min-height: 50vh;
    }
    
    .features-section,
    .quick-actions-section {
        padding: 60px 20px;
    }
    
    /* About Page Responsive */
    .about-container {
        padding: 1rem;
    }
    
    .about-header {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .about-header h1 {
        font-size: 2rem;
    }
    
    /* Meetings Page Responsive */
    .container-fluid {
        padding: 0 1rem;
    }
    
    .title-large {
        font-size: 2rem;
    }
    
    /* Stack two-column layout vertically on mobile */
    .row {
        margin: 0;
    }
    
    .col-md-6 {
        padding: 0;
        margin-bottom: 1rem;
    }
    
    /* Gradient header responsive */
    .gradient-header {
        padding: 2rem 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .gradient-header h1 {
        font-size: 2rem !important;
    }
    
    /* Search panel responsive */
    .search-panel {
        padding: 1rem !important;
        margin-bottom: 1rem;
    }
    
    /* Hide search panel on mobile when person is selected */
    .search-panel-container.mobile-hide-when-selected {
        display: none !important;
    }
    
    /* Person cards responsive */
    .person-card {
        padding: 1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Select person panel responsive */
    .select-person-panel {
        padding: 1.5rem !important;
        min-height: 300px !important;
    }
    
    .person-icon {
        font-size: 3rem;
    }
    
    /* Meeting form responsive */
    .meeting-form-card {
        margin-top: 1rem;
    }
    
    .meeting-form-header {
        padding: 1.5rem !important;
        flex-direction: column;
        text-align: center;
    }
    
    .meeting-form-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .meeting-form-body {
        padding: 1.5rem !important;
    }
    
    /* Form controls responsive */
    .form-control-modern,
    .meeting-form-body .form-control,
    .meeting-form-body .form-select {
        padding: 10px 12px !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    .btn-submit-modern,
    .meeting-form-body .btn-primary {
        width: 100%;
        padding: 12px 16px !important;
        font-size: 1rem !important;
    }
    
    /* Selected person card responsive */
    .selected-person-card {
        margin-bottom: 1rem;
    }
    
    .person-header {
        padding: 1.5rem !important;
        flex-direction: column;
        text-align: center;
    }
    
    .btn-close-modern {
        margin-top: 1rem;
        align-self: center;
    }
    
    /* Meeting grid responsive */
    .meeting-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card-compact {
        padding: 1rem;
    }
    
    .follow-up-slider-container {
        width: 100px;
        margin-top: 0.5rem;
    }
    
    .grid-auto-fit,
    .grid-auto-fit-large,
    .grid-auto-fit-medium {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .grid-auto-fit-small {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    /* Stack form elements vertically on mobile */
    .row.mb-3 .col-md-6 {
        margin-bottom: 1rem;
    }
    
    /* Adjust button sizes for mobile */
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Improve touch targets */
    .list-group-item {
        padding: 1rem;
        min-height: 60px;
    }
    
    /* Better spacing for mobile forms */
    .mb-3 {
        margin-bottom: 1.5rem !important;
    }
    
    /* Responsive text sizes */
    .title-medium {
        font-size: 1.25rem;
    }
    
    .title-small {
        font-size: 1.1rem;
    }
    
    /* Meetings Page Specific Responsive */
    .gradient-header {
        padding: 2rem 1rem;
    }
    
    .search-panel {
        padding: 1rem;
    }
    
    .person-card {
        padding: 1rem;
    }
    
    .selected-person-card {
        margin: 0.5rem;
    }
    
    .person-header {
        padding: 16px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .person-avatar,
    .person-avatar-placeholder {
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .meeting-form-body {
        padding: 20px;
    }
    
    .meeting-form-header {
        padding: 16px;
        flex-direction: column;
        text-align: center;
    }
    
    .meeting-form-icon {
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    /* Reports Page Specific Responsive */
    .meeting-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .meeting-details-body {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .detail-section {
        margin-bottom: 1rem;
    }
    
    .notes-section {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .attendees-section {
        margin-top: 1rem;
        padding-top: 1rem;
    }
}

@media (max-width: 576px) {
    /* Extra small devices */
    .container-fluid {
        padding: 0 0.75rem;
    }
    
    .card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .title-large {
        font-size: 1.75rem;
    }
    
    .title-medium {
        font-size: 1.1rem;
    }
    
    /* Meetings page extra small responsive */
    .gradient-header {
        padding: 1.5rem 0.75rem !important;
        border-radius: 8px !important;
    }
    
    .gradient-header h1 {
        font-size: 1.75rem !important;
    }
    
    .gradient-header p {
        font-size: 0.9rem !important;
    }
    
    .search-panel {
        padding: 0.75rem !important;
    }
    
    .person-card {
        padding: 0.75rem !important;
    }
    
    .select-person-panel {
        padding: 1rem !important;
        min-height: 250px !important;
    }
    
    .person-icon {
        font-size: 2.5rem;
    }
    
    .meeting-form-header {
        padding: 1rem !important;
    }
    
    .meeting-form-body {
        padding: 1rem !important;
    }
    
    .form-control-modern,
    .meeting-form-body .form-control,
    .meeting-form-body .form-select {
        padding: 8px 10px !important;
    }
    
    .btn-submit-modern,
    .meeting-form-body .btn-primary {
        padding: 10px 12px !important;
        font-size: 0.9rem !important;
    }
    
    /* Date/time row responsive */
    .row .col-md-6 {
        margin-bottom: 0.75rem;
    }
    
    /* Stack action buttons vertically */
    .row .col-6 {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Smaller slider for very small screens */
    .follow-up-slider-container {
        width: 80px;
    }
    
    .follow-up-slider::-webkit-slider-thumb {
        width: 20px;
        height: 20px;
    }
    
    .follow-up-slider::-moz-range-thumb {
        width: 20px;
        height: 20px;
    }
    
    /* Improve form layout */
    .input-group {
        flex-direction: column;
    }
    
    .input-group .btn {
        margin-top: 0.5rem;
        border-radius: 0.375rem !important;
    }
    
    .input-group-text {
        border-radius: 0.375rem 0.375rem 0 0 !important;
    }
    
    .input-group .form-control {
        border-radius: 0 0 0.375rem 0.375rem !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet responsive adjustments */
    .grid-auto-fit-large {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .grid-auto-fit {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .container-fluid {
        padding: 0 1.5rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .info-section {
        padding: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .user-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .user-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .user-field {
        justify-content: center;
    }
    
    .field-label {
        min-width: auto;
        margin-right: 0.5rem;
    }
}

@media (max-width: 480px) {
    /* Home Page Small Screen */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .feature-card,
    .action-card {
        margin: 0 10px;
    }
    
    /* About Page Small Screen */
    .about-header {
        padding: 1rem;
    }
    
    .about-icon {
        font-size: 3rem;
    }
    
    .about-header h1 {
        font-size: 1.75rem;
    }
    
    .info-section {
        padding: 1rem;
    }
    
    .support-card {
        padding: 1.5rem;
    }
    
    .user-info-card {
        padding: 1.5rem;
    }
}

/* ========================================
   RESPONSIVE MODAL STYLES
   ======================================== */

/* Mobile responsive modal */
.responsive-modal .k-window {
    max-width: 95vw !important;
    max-height: 90vh !important;
}

@media (max-width: 768px) {
    .responsive-modal .k-window {
        width: 95vw !important;
        max-width: 95vw !important;
        margin: 2.5vh auto !important;
        max-height: 95vh !important;
    }
    
    .meeting-details-body {
        padding: 1rem !important;
        margin: 0.5rem !important;
    }
    
    .meeting-details-header {
        padding: 1rem !important;
    }
    
    .meeting-details-header h4 {
        font-size: 1.1rem !important;
    }
    
    .detail-section {
        margin-bottom: 1rem !important;
    }
    
    .detail-value {
        padding: 0.5rem !important;
        font-size: 0.9rem !important;
    }
    
    .notes-content {
        padding: 1rem !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .responsive-modal .k-window {
        width: 98vw !important;
        max-width: 98vw !important;
        margin: 1vh auto !important;
        max-height: 98vh !important;
    }
    
    .meeting-details-body {
        padding: 0.75rem !important;
        margin: 0.25rem !important;
    }
    
    .meeting-details-header {
        padding: 0.75rem !important;
    }
    
    .detail-label {
        font-size: 0.8rem !important;
    }
    
    .detail-value {
        padding: 0.4rem !important;
        font-size: 0.85rem !important;
    }
}