
        .share-buttons {
            display: flex !important;
            gap: 1rem !important;
        }

        /* Booking Card Styles - متوافق مع ثيم الموقع */
        .booking-item-card {
            backdrop-filter: blur(10px);
            border: 1px solid rgba(45, 153, 153, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .booking-item-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(45, 153, 153, 0.12);
            border-color: rgba(45, 153, 153, 0.2);
        }

        .booking-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid rgba(45, 153, 153, 0.1);
        }

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

        .status-badge.status-pending {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
            color: #f57f17;
            border: 1px solid rgba(255, 193, 7, 0.3);
        }

        .status-badge.status-confirmed {
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
            color: #2e7d32;
            border: 1px solid rgba(76, 175, 80, 0.3);
        }

        .status-badge.status-in_progress {
            background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(33, 150, 243, 0.05));
            color: #1565c0;
            border: 1px solid rgba(33, 150, 243, 0.3);
        }

        .status-badge.status-completed {
            background: linear-gradient(135deg, rgba(45, 153, 153, 0.1), rgba(45, 153, 153, 0.05));
            color: var(--primary);
            border: 1px solid rgba(45, 153, 153, 0.3);
        }

        .booking-date {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-light);
        }

        .booking-date .feather {
            width: 16px;
            height: 16px;
        }

        .booking-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .info-box {
            background: linear-gradient(135deg, rgba(45, 153, 153, 0.03), rgba(10, 35, 66, 0.02));
            border: 1px solid rgba(45, 153, 153, 0.1);
            border-radius: 8px;
            padding: 0.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            transition: all 0.3s ease;
        }

        .info-box:hover {
            background: linear-gradient(135deg, rgba(45, 153, 153, 0.06), rgba(10, 35, 66, 0.04));
            border-color: rgba(45, 153, 153, 0.2);
        }

        .info-label {
            font-size: 0.75rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
        }

        .info-value {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
        }

        .detail-section {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .detail-section:hover {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .meeting-section {
            background: linear-gradient(135deg, rgba(45, 153, 153, 0.04), rgba(45, 153, 153, 0.02));
            border-left: 3px solid var(--primary);
        }

        .location-section {
            background: linear-gradient(135deg, rgba(10, 35, 66, 0.04), rgba(10, 35, 66, 0.02));
            border-left: 3px solid var(--dark);
        }

        .time-section {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.06), rgba(255, 193, 7, 0.03));
            border-left: 3px solid #ffa000;
        }

        .notes-section {
            background: linear-gradient(135deg, rgba(156, 39, 176, 0.04), rgba(156, 39, 176, 0.02));
            border-left: 3px solid #9c27b0;
        }

        .section-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .meeting-section .section-title {
            color: var(--primary);
        }

        .location-section .section-title {
            color: var(--dark);
        }

        .time-section .section-title {
            color: #f57c00;
        }

        .notes-section .section-title {
            color: #9c27b0;
        }

        .section-title .feather {
            width: 18px;
            height: 18px;
        }

        .section-content, .section-content-grid {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

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

        .detail-row {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .detail-label {
            font-weight: 600;
            color: var(--text);
            white-space: nowrap;
        }

        .detail-value {
            color: var(--dark);
            font-weight: 500;
        }

        .code-badge {
            background: rgba(0, 0, 0, 0.06);
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-size: 0.85rem;
            font-family: 'Courier New', monospace;
            color: var(--dark);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .link-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            background: rgba(45, 153, 153, 0.08);
            border: 1px solid rgba(45, 153, 153, 0.2);
            transition: all 0.3s ease;
        }

        .link-button:hover {
            background: rgba(45, 153, 153, 0.15);
            transform: translateX({{ app()->getLocale() == 'ar' ? '-' : '' }}3px);
        }

        .link-button .feather {
            width: 14px;
            height: 14px;
        }

        .note-box {
            padding: 0.75rem;
      
            border-radius: 6px;
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .note-label {
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 0.4rem;
            color: var(--text);
        }

        .note-content {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .payment-info {
            margin-top: 1rem;
            padding: 1rem;
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.04));
            border-radius: 8px;
            border: 1px solid rgba(76, 175, 80, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .payment-status, .payment-amount {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .payment-label, .amount-label {
            font-size: 0.75rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
        }

        .amount-value {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            direction: ltr;
        }

        @media (max-width: 768px) {
            .booking-item-card {
                padding: 1rem;
            }

            .booking-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
            }

            .booking-info-grid {
                grid-template-columns: 1fr;
            }

            .payment-info {
                flex-direction: column;
                align-items: stretch;
            }

            .payment-amount {
                align-items: flex-end;
            }
        }