   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
              font-family: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
      font-size: 18px;
        }
     

        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf9 100%);
            color: #333;
            min-height: 100vh;
            padding: 70px 0 20px 0; /* top and bottom padding for bars */
            text-align: center;
        }
        
        /* Top Bar */
        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #2c3e50;
            color: white;
            padding: 6px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
     .logo img{width:240px;}
        
        .search-bar {
            flex: 1;
            max-width: 500px;
            margin: 0 30px;
            position: relative;
        }
        
        .search-bar input {
            width: 100%;
            padding: 10px 20px 10px 40px;
            border-radius: 30px;
            border: none;
            outline: none;
            font-size: 16px;
        }
        
        .search-bar i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #7f8c8d;
        }
        
        .nav-links {
            display: flex;
            gap: 25px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #ff6b6b;
        }
        
        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 10px;
            padding: 0 10px;
            
        }
        
        /* Event Details */
        .event-details {
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 25px rgba(0,0,0,0.4);
            overflow: hidden;
            margin-bottom: 30px;
            
        }
        
        .event-header {
            background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
            color: white;
            padding: 30px;
            position: relative;
        }
        
        .event-header h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }
        
        .event-info {
            display: flex;
            gap: 25px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .info-item i {
            font-size: 20px;
        }
        
        .event-description {
            padding: 0px;
                backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(7px)!important;
    background: rgba(223, 223, 223, 0.1) !important;
    

        }
        
        .event-description h3 {
            margin-bottom: 15px;
          
            font-size: 22px;
            color:#eee;
            
        }
        
        .event-description p {
            line-height: 1.6;
            color: #fff;
            margin-bottom: 20px;
            
        }
        
        .event-actions {
            display: flex;
            gap: 15px;
            padding: 30px;
    background: rgba(223, 223, 223, 0.5) !important;


        }
        
        .btn {
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 16px;
        }
        
        .btn-primary {
            background: #ff6b6b;
            color: white;
        }
        
        .btn-primary:hover {
            background: #ff5252;
            transform: translateY(-2px);
        }
        
          .btn:active {
            background: #ff00005f;
            transform: translateY(-2px);
        }
        .btn-secondary {
            background: #f8f9fa;
            color: #2c3e50;
            border: 1px solid #e0e0e0;
        }
        
        .btn-secondary:hover {
            background: #e9ecef;
            transform: translateY(-2px);
        }
        
        /* Right Sidebar */
        .right-sidebar {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            padding: 25px;
            height: fit-content;
            position: sticky;
            top: 90px;
        }
        
        .sidebar-title {
            font-size: 18px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f1f3f5;
            color: #2c3e50;
        }
        
        /* Login Section */
        .login-section {
            margin-bottom: 25px;
        }
        
        .login-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .login-form input {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
        }
        
        .login-buttons {
            display: flex;
            gap: 10px;
        }
        
        .login-buttons button {
            flex: 1;
        }
        
        /* Calendar */
        .calendar {
            margin-bottom: 25px;
        }
        
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
        }
        
        .calendar-day {
            text-align: center;
            padding: 8px 0;
            font-weight: 600;
            font-size: 12px;
            color: #7f8c8d;
        }
        
        .calendar-date {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 8px 0;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .calendar-date:hover {
            background: #f8f9fa;
        }
        
        .calendar-date.event {
            background: #fff7f7;
            color: #ff6b6b !important;
            font-weight: 600;
        }
        
        .calendar-date.today {
            background: #ff6b6b;
            color: white;
            font-weight: 600;
        }
        
        /* Menu Items */
        .menu-items {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .menu-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 8px;
            background: #f8f9fa;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .menu-item:hover {
            background: #e9ecef;
        }
        
        .menu-item i {
            color: #ff6b6b;
            font-size: 18px;
        }
        
        /* Bottom Bar */
        .bottom-bar {
           
            bottom: 0;
            left: 0;
            width: 100%;
            background: white;
            padding: 15px 30px;
           
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        
        .bottom-links {
            display: flex;
            gap: 25px;
        }
        
        .bottom-links a {
            color: #7f8c8d;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
              cursor: pointer;
        }
        
        .bottom-links a:hover {
            color: #ff6b6b;
        }
        
        .copyright {
            color: #95a5a6;
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 900px) {
            .container {
                grid-template-columns: 1fr;
            }
            
            .right-sidebar {
                position: static;
            }
              #tbar0{     display:none !important;} 
             
        }
        @media (min-width: 900px) {
             #anmenu{     display:none;}  
             #tbar0{     display:flex;}  
              .bar_cul{     display:none!important;} 
             
        }
        @media (max-width: 600px) {
            .top-bar {
                flex-wrap: wrap;
                gap: 15px;
            }
              .bottom-bar{display:block;}
                .bottom-links{display:block;}
            .search-bar {
                order: 3;
                width: 100%;
                margin: 15px 0 0 0;
            }
            
            .nav-links {
                order: 2;
                width: 100%;
                justify-content: center;
            }
            
            .event-info {
                flex-direction: column;
                gap: 10px;
            }
        
           }
                .other-month {
            color: #b0b0b0;
            background: #f9f9f9;
        }
               .calendar-date.selected {
            background: #57a4f0 ;
            color: white;
        }
               .calendar-date::backdrop {
            background: #1177cb7f;
            color: white;
        }
                .calendar-date:hover {
           background: #1177cb7f;
            color: rgba(5, 4, 4, 0.655);
            transform: translateY(-2px);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
    .text-shadow {
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.7),
        0 0 8px rgba(0, 0, 0, 1);
    color: white; 
    font-weight: 600;
}     
.ltr-text {
    direction: ltr;
    text-align: right; 
}

.organizer-logos {
    display: flex;
    flex-wrap: wrap;          /* Allow wrapping on small screens */
    gap: 24px;                /* Space between logos */
    justify-content: center;  /* Center horizontally */
    align-items: center;
    padding: 20px 0;
}

.organizer-logos img {
    height: 60px;             /* Fixed height for uniformity */
    width: auto;              /* Maintain aspect ratio */
    object-fit: contain;      /* Prevent distortion */
    filter: grayscale(0%);    /* Optional: remove if color logos */
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.3s;
}

.organizer-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive: Smaller logos on mobile */
@media (max-width: 600px) {
    .organizer-logos {
        gap: 16px;
    }
    
    .organizer-logos img {
        height: 50px;
    }
}
.bar1, .bar2, .bar3 {
    width: 25px;
    height: 4px;
    background: #666;
    margin: 4px 0;
    transition: 0.4s;
    text-align: center;
}
.change .bar1 {
  
  transform: rotate(-45deg) translate(-6px, 6px);
}

.change .bar2 {opacity: 0; 
transform: translate(30px, 0px);}

.change .bar3 {
  
  transform: rotate(45deg) translate(-5.5px, -5.5px);
}

.bar_cul{
    z-index: 1001; 
    right:0px; 
    position: fixed;
     display:none;
      background:#2c3e50;
       width:400px;
top: 65px;
padding:10px;
    }
    /* map side */

       .container {
            display: flex;
            width: 100%;
            max-width: 1200px;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
        }
        
        .form-container {
            width: 50%;
            padding: 40px;
            background: white;
        }
        
        .map-container {
            width: 50%;
            position: relative;
        }
        
        #map {
            height: 100%;
            width: 100%;
        }
        
       .form-container{ 
        input {
            width: 80%;
            padding: 14px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        input:focus {
            border-color: #3498db;
            outline: none;
        }}
        
        .coordinates {
            text-align: center;
            margin-top: 15px;
            font-size: 14px;
            color: #7f8c8d;
            background: #f8f9fa;
            padding: 10px;
            border-radius: 8px;
        }
        
        .location-info {
            margin-top: 15px;
            padding: 15px;
            background: #e8f4fc;
            border-radius: 10px;
            border-left: 4px solid #3498db;
        }
        
        .location-info p {
            margin: 5px 0;
            color: #2c3e50;
        }
       .glocB {
    width: auto;
    padding: 14px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.glocB:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.glocB:active {
    transform: translateY(0);
}

.glocB:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}
        @media (max-width: 900px) {
            .container {
                flex-direction: column;
                height: auto;
            }
            
            .form-container, .map-container {
                width: 100%;
            }
            
            .map-container {
                height: 400px;
            }
        }

         .area-marker { font-weight: bold; color: #2c3e50; }
        .styled-combobox {
      position: relative;
      max-width: 500px;
      margin: 30px auto;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .styled-combobox label {
      display: block;
      margin-bottom: 12px;
      font-size: 18px;
      font-weight: 600;
      color: #2c3e50;
    }

    .styled-combobox select {
      width: 80%;
      padding: 16px 20px 16px 50px;
      font-size: 17px;
      border: 2px solid #e0e0e0;
      border-radius: 14px;
      background: #fff;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237f8c8d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: 16px center;
      background-size: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
      direction: rtl;
      appearance: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .styled-combobox select:focus {
      outline: none;
      border-color: #3498db;
      box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.25);
    }

    .styled-combobox select:hover {
      border-color: #3498db;
    }

    /* Custom scrollbar for dropdown */
    .styled-combobox select::-webkit-scrollbar {
      width: 8px;
    }

    .styled-combobox select::-webkit-scrollbar-track {
      background: #f8f9fa;
      border-radius: 4px;
    }

    .styled-combobox select::-webkit-scrollbar-thumb {
      background: #3498db;
      border-radius: 4px;
    }

    /* Placeholder style */
    .styled-combobox select:invalid {
      color: #95a5a6;
    }

    /* Option styling (limited support, but works in Firefox) */
    .styled-combobox option {
      padding: 12px;
      font-size: 16px;
      background: #fff;
      color: #2c3e50;
    }

    /* Focus ring for accessibility */
    .styled-combobox select:focus-visible {
      outline: 2px solid #3498db;
      outline-offset: 2px;
    }
    .flags1 {
    padding: 6px;
    border-radius: 10px;
    z-index: 100;
    width: 45px;
    }