.attendee-table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            margin: 1.5rem 0;
        }
        .attendee-table th {
            background-color: var(--light-gray);
            font-weight: 600;
        }
        .time-badge {
            font-family: 'Courier New', monospace;
            background: #f0f2f5;
            padding: 0.3rem 0.6rem;
            border-radius: 20px;
            font-size: 0.85rem;
        }
        .work-hour-good {
            color: #198754;
            font-weight: 600;
        }
        .work-hour-warning {
            color: #dc3545;
            font-weight: 500;
        }
        .work-hour-partial {
            color: #fd7e14;
            font-weight: 500;
        }
        .meeting-summary-card {
            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
            border-left: 4px solid var(--primary-color);
            padding: 1rem 1.2rem;
            border-radius: 16px;
            margin-top: 1.2rem;
        }
        .action-buttons .btn-sm {
            margin: 0.2rem;
        }
        .timezone-select-wrapper {
            position: relative;
            min-width: 220px;
        }
        .timezone-search-input {
            width: 100%;
            padding: 0.375rem 0.75rem;
            font-size: 0.875rem;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            background-color: #fff;
        }
        .timezone-search-input:focus {
            border-color: #86b7fe;
            outline: 0;
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }
        .timezone-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 1050;
            max-height: 300px;
            overflow-y: auto;
            background: #fff;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            display: none;
        }
        .timezone-dropdown.show {
            display: block;
        }
        .timezone-option {
            padding: 0.5rem 0.75rem;
            cursor: pointer;
            font-size: 0.85rem;
            border-bottom: 1px solid #f1f3f5;
        }
        .timezone-option:hover,
        .timezone-option.highlighted {
            background-color: #f8f9fa;
        }
        .timezone-option.selected {
            background-color: #e7f1ff;
            color: #0d6efd;
            font-weight: 500;
        }
        .timezone-group-header {
            padding: 0.4rem 0.75rem;
            font-weight: 600;
            background: #f8f9fa;
            font-size: 0.8rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .no-results {
            padding: 0.75rem;
            text-align: center;
            color: #6c757d;
            font-style: italic;
        }
        .legend-scheduling {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
            background: #fef9e6;
            padding: 0.5rem 1rem;
            border-radius: 32px;
        }
        .badge-utc {
            background: #2c3e66;
            color: white;
            font-size: 0.8rem;
        }
        .disclaimer-note {
            font-size: 0.85rem;
            background-color: #f8f9fa;
            border-left: 4px solid #6c757d;
            padding: 0.75rem;
            margin: 1rem 0;
            border-radius: 0 8px 8px 0;
        }
        .utc-helper {
            font-size: 0.85rem;
            margin-top: 5px;
            color: #495057;
        }
        .quick-timezone-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
            padding: 0.75rem;
            background: #f8f9fa;
            border-radius: 8px;
        }
        .quick-tz-btn {
            padding: 0.25rem 0.75rem;
            font-size: 0.8rem;
            border: 1px solid #dee2e6;
            border-radius: 20px;
            background: white;
            cursor: pointer;
            transition: all 0.2s;
        }
        .quick-tz-btn:hover {
            background: #e9ecef;
            border-color: #adb5bd;
        }
        .quick-tz-btn.active {
            background: #0d6efd;
            color: white;
            border-color: #0d6efd;
        }