@font-face {
  font-family: "Helvetica Neue ME";
  src: url("../../fonts/95cecf452d3208890088a5b4c19c7ecf.eot");
  /* IE9*/
  src: url("../../fonts/95cecf452d3208890088a5b4c19c7ecf.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */
    url("../../fonts/95cecf452d3208890088a5b4c19c7ecf.woff2") format("woff2"),
    /* chrome、firefox */
    url("../../fonts/95cecf452d3208890088a5b4c19c7ecf.woff") format("woff"),
    /* chrome、firefox */
    url("../../fonts/95cecf452d3208890088a5b4c19c7ecf.ttf") format("truetype"),
    /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
    url("../../fonts/95cecf452d3208890088a5b4c19c7ecf.svg#Helvetica Neue ME") format("svg");
  /* iOS 4.1- */
}

/* General Styles */
body {
  font-family: "Helvetica Neue ME";
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  direction: ltr;
  min-width: 100%;
}

.container {
  display: flex;
  flex-direction: column;
  margin: auto;
  padding: 0%;
  flex-wrap: nowrap;
  align-items: center;
}

.page-content {
  margin-left: 250px;
  direction: ltr;
}

[dir="rtl"] .page-content {
  margin-left: 0;
  margin-right: 0;
  direction: rtl;
}

.sidebar {
  width: 250px;
  background-color: #007bff;
  color: white;
  padding: 20px;
  height: 100vh;
  text-align: right;
}

.main-content {
  flex-grow: 1;
  padding: 20px;
}

.top-header .navbar {
  left: 250px;
}

[dir="rtl"] .top-header .navbar {
  left: 0;
}

.card {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  margin-top: 10px;
}

.table th,
.table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: right;
  direction: rtl;
}

.table th {
  background: #007bff;
  color: white;
}

/* Meetings Layout */
.meetings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
}

.meeting-card {
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.meeting-card:hover {
  transform: translateY(-5px);
}

.meeting-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.meeting-details {
  font-size: 1rem;
  color: #555;
}

.admin-link {
  color: #007bff;
  /* Change this to your desired color */
}

.admin-link:hover {
  color: #000487;
  /* Optional: Change to a lighter color when hovering */
}

.user-img {
  width: 40px;
  height: 40px;
  padding: 4px;
  border-radius: 50%;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1 {
  background: -webkit-linear-gradient(#eee, #000487);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: normal;
}
h2 {
  background: -webkit-linear-gradient(#eee, #000487);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: normal;
  font-weight: bold;
}

@media (max-width: 991.98px) {
  .meetings-grid {
    grid-template-columns: 1fr;
  }
}

.logo {
  display: flex;
  align-items: center;
  z-index: 3;
}

.meeting-legend-crimson {
  width: 0.5rem;
  height: 0.5rem;
  background-color: crimson;
  display: inline-block;
  margin-left: .5rem !important;
}

.warpper {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* float: left; */
}

.tab {
  cursor: pointer;
  padding: 10px 20px;
  margin: 0px 2px;
  background: #32557f;
  display: inline-block;
  color: #fff;
  border-radius: 3px 3px 0px 0px;
  box-shadow: 0 0.5rem 0.8rem #7c7c7c;
}

.panels {
  background: #fff;
  box-shadow: 0 1rem 1rem #7c7c7c;
  min-height: 200px;
  width: 100%;
  max-width: 700px;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
}

.panel {
  display: none;
  animation: fadein 0.8s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.panel-title {
  font-size: 1.5em;
  font-weight: bold;
}

.radio {
  display: none;
}

#one:checked~.panels #one-panel,
#two:checked~.panels #two-panel,
#three:checked~.panels #three-panel {
  display: block;
}

#one:checked~.tabs #one-tab,
#two:checked~.tabs #two-tab,
#three:checked~.tabs #three-tab {
  background: #fff;
  color: #000;
  border-top: 4px solid #32557f;
}

footer {
  position: relative;
  bottom: 0;
  width: 100%;
  background-color: #f8f9fa;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  background: -webkit-linear-gradient(#eee, #000487);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ltr .card,
.ltr .meeting-card,
.ltr .tab {
  padding-left: 10px;
  padding-right: 10px;
  direction: ltr;
}

.rtl .card,
.rtl .meeting-card,
.rtl .tab {
  padding-right: 10px;
  padding-left: 10px;
  direction: rtl;
}

.ltr .user-img {
  margin-right: 0.5rem !important;
  margin-left: 0 !important;
}

.rtl .user-img {
  margin-left: 0.5rem !important;
  margin-right: 0 !important;
}

.dropdown-menu {
  min-width: 220px;
  margin-top: 5px !important;
}

.ms-3 {
  margin-right: 5px;
}

[dir="rtl"] .container {
  flex-direction: row-reverse;
}

[dir="rtl"] .dropdown-menu-end[data-bs-popper] {
  right: -121px;
  direction: rtl;
}


@media (max-width: 768px) {
  .meetings-grid {
    grid-template-columns: 1fr;
  }
}

[dir="rtl"] .admin-link {
  color: #007bff;
}

[dir="rtl"] .admin-link:hover {
  color: #000487;
}

.helpline-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  /* Semi-transparent overlay */
  z-index: -1;
}

.calc-box {
  background-color: #ffffff;
  border: 4px solid #00698f;
  border-radius: 10px;
  padding: 10px;
  margin: 10px;
  width: 30%;
  min-width: 220px;
  max-width: 220px;
  display: inline-block;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.helpline-box h4 {
  color: #00698f;
  margin-top: 0;
}

.helpline-box a {
  text-decoration: none;
  color: #337ab7;
}

.helpline-box a:hover {
  color: #23527c;
}
/* Meeting Card Styles */
.group-info-container {
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
}

.info-block {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    margin-bottom: 12px;
    background-color: white;
    border-radius: 8px;
    border-left: 4px solid #4f46e5;
    border-right: 4px solid #4f46e5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    transition: all 0.2s ease;
}

.info-block:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.info-label {
    font-weight: 600;
    color: #4b5563;
    min-width: 200px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.info-value {
    font-weight: 500;
    color: #1e40af;
    font-size: 1rem;
    padding-left: 12px;
    margin-left: 12px;
    border-left: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .group-info-container {
        padding: 15px;
    }

    .info-block {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 15px;
    }

    .info-value {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
        padding-top: 6px;
        color: #1e3a8a;
    }
}

[dir="rtl"] .info-block {
    border-right: 4px solid #4f46e5;
}
[dir="rtl"] .meeting-item {
    border-right: 4px solid #4f46e5;
    border-left: 4px solid #4f46e5;
}

.meeting-item {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border-left: 5px solid #1e40af;
    border-right: 5px solid #1e40af;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 24px;
    min-height: 360px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.meeting-item-suspended {
    background-color: #f1f1f1;
    padding: 24px;
    border-radius: 12px;
    border: 3px dashed #777;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
    margin-bottom: 24px;
    min-height: 360px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.meeting-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.meeting-type-topic {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0;
}

.meeting-type-badge, .meeting-topic-badge, .meeting-open-badge {
    background-color: #f0f7ff;
    color: #1e40af;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meeting-topic-badge {
    background-color: #f0fff4;
    color: #065f46;
}

.meeting-open-badge {
    background-color: whitesmoke;
    color: #ff1717;
}

.meeting-options {
    margin-top: 10px;
    padding: 10px;
    background-color: #f9fafb;
    border-radius: 8px;
    border: 1px dashed #e2e8f0;
}

.options-title {
    font-weight: 600;
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.options-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.option-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    background-color: white;
    padding: 4px 4px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    direction: ltr;
}

.option-name {
    color: #374151;
    font-weight: 500;
}

.option-value {
    color: #1e40af;
    font-weight: 600;
}

.meeting-item.open-border {
    border: 4px solid crimson !important;
}

.meeting-item.closed-border {
    border: 4px solid royalblue !important;
}

/* Sleek Glassmorphic Navbar styles */
.main-nav {
  position: sticky;
  top: 15px;
  z-index: 1040;
  background: #1F2A38 !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-right: none !important;
  border-radius: 50px 0 0 50px !important;
  margin: 15px 0 15px 20px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: visible !important;
}

.top-nav {
  height: 80px !important;
  background: transparent !important;
  padding-left: 4px !important;
  padding-right: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  direction: inherit !important;
}

/* Custom Navigation Link Styles */
.nav-link-custom {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #00BAF0;
  transition: all 0.25s ease;
  transform: translateX(-50%);
}

.nav-link-custom:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link-custom:hover::after {
  width: 50%;
}

.nav-link-custom.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.15);
}

.nav-link-custom.active::after {
  width: 60%;
  background: #fff;
}

/* Hover-based submenus on Desktop */
.nav-item-dropdown {
  position: relative;
  overflow: visible !important;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: rgba(0, 4, 135, 0.92);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 10px;
  min-width: 230px;
  list-style: none;
  margin: 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1060;
}

[dir="rtl"] .nav-submenu {
  left: auto;
  right: 50%;
  transform: translateX(50%) translateY(15px);
}

.nav-item-dropdown:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

[dir="rtl"] .nav-item-dropdown:hover .nav-submenu {
  transform: translateX(50%) translateY(5px);
}

.submenu-item {
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.submenu-item:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(3px);
}

[dir="rtl"] .submenu-item:hover {
  transform: translateX(-3px);
}

.submenu-item.active {
  color: #fff !important;
  background: rgba(0, 186, 240, 0.2);
  border: 1px solid rgba(0, 186, 240, 0.3);
}

/* Glass Buttons */
.btn-glass {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  border-radius: 30px !important;
  padding: 8px 18px !important;
  font-weight: 600 !important;
  transition: all 0.25s ease !important;
}

.btn-glass:hover, .btn-glass:focus {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1) !important;
}

.btn-contact {
  background: linear-gradient(135deg, #00BAF0 0%, #0098c7 100%) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 30px !important;
  padding: 8px 18px !important;
  font-weight: 600 !important;
  transition: all 0.25s ease !important;
}

.btn-contact:hover {
  box-shadow: 0 4px 15px rgba(0, 186, 240, 0.4) !important;
  transform: translateY(-1px);
}

/* Dropdown Menu Custom overrides */
.dropdown-menu-custom {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 14px !important;
}

/* Mobile Drawer (Offcanvas) Customizations */
.mobile-drawer {
  background: rgba(0, 4, 135, 0.96) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
  max-width: 320px;
}

.mobile-nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.mobile-sub-link {
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
}

.mobile-sub-link:hover, .mobile-sub-link.active {
  color: #00BAF0 !important;
  padding-left: 20px;
}

[dir="rtl"] .mobile-sub-link:hover, [dir="rtl"] .mobile-sub-link.active {
  padding-left: 16px;
  padding-right: 20px;
}

.bg-white-5 {
  background: rgba(255, 255, 255, 0.05) !important;
}
.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* RTL Alignment Overrides for Arabic Language */
[dir="rtl"] .mobile-drawer {
  text-align: right !important;
  direction: rtl !important;
}
[dir="rtl"] .mobile-nav-link {
  flex-direction: row !important;
}
[dir="rtl"] .mobile-nav-link i {
  margin-left: 1rem !important;
  margin-right: 0 !important;
}
[dir="rtl"] .nav-submenu {
  text-align: right !important;
  direction: rtl !important;
}
[dir="rtl"] .submenu-item {
  flex-direction: row !important;
}
[dir="rtl"] .submenu-item i {
  margin-left: 0.5rem !important;
  margin-right: 0 !important;
}

/* Mobile Viewport Optimizations */
@media (max-width: 991.98px) {
  .main-nav {
    margin: 12px 0 12px 18px !important;
    border-radius: 50px 0 0 50px !important;
  }
  .top-nav {
    padding-left: 4px !important;
    padding-right: 8px !important;
  }
}


