@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

/* Base Styles */
body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

/* Header Styles */
.header {
  height: 108px;
  background: linear-gradient(90deg, #0c75c2 0%, #1ecee4 100%);
  padding: 0 32px;
  justify-content: flex-start;
  color: #fff;
}

.header > div:last-child {
  margin-left: auto;
}

.logo-container {
  display: flex;
  align-items: center;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
  width: 116px;
  height: 90.925px;
  flex-shrink: 0;
}

.trustpilot {
  width: 120px;
}

/* Header Navigation */
.nav-center {
  margin-left: 40px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  padding: 0 24px;
  border-radius: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s;
}

.nav-link:last-child {
  border-right: none;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Header Icons and User */
.header-icons .bi {
  font-size: 24px;
  color: #fff;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff4444;
  color: white;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Layout Container */
.layout-container {
  display: flex;
  min-height: calc(100vh - 80px);
  max-width: 100%;
  overflow-x: hidden;
}

/* Left Sidebar */
.sidebar {
  width: 306px;
  height: 943px;
  flex-shrink: 0;
  background-color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
a {
  text-decoration: none;
}
/* Menu Items */
.menu-item {
  display: flex;
  align-items: center;
  padding: 6px 16px;
  color: #8b8d97;
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: all 0.3s;
  cursor: pointer;
}

.menu-item:hover {
  background-color: rgba(12, 117, 194, 0.1);
  color: #0c75c2;
  padding-right: 30px;
}

.menu-item.active {
  background-color: #0c75c2;
  color: #fff;
  padding-right: 30px;
}

.menu-item i {
  margin-right: 12px;
  font-size: 20px;
}

/* Dropdown Menu Items */
.menu-item-dropdown {
  background: #0c75c2;
  color: white;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}

.menu-item-dropdown:not(.active) {
  background: white;
  color: #8b8d97;
}

.menu-item-dropdown:hover:not(.active) {
  background-color: rgba(12, 117, 194, 0.1);
  color: #0c75c2;
}

.menu-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-item-dropdown .arrow {
  transition: transform 0.3s;
}

.menu-item-dropdown.active .arrow {
  transform: rotate(180deg);
}

/* Dropdown Content */
.dropdown-content {
  padding-left: 48px;
  margin-bottom: 16px;
  display: none;
}

.dropdown-content.show {
  display: block;
}

.dropdown-item-custom {
  color: #8b8d97;
  padding: 8px 0;
  display: block;
  text-decoration: none;
  transition: color 0.3s;
}

.dropdown-item-custom:hover {
  color: #0c75c2;
}

/* Upgrade Box */
.upgrade-box {
  background: linear-gradient(90deg, #0c75c2 0%, #1ecee4 100%);
  color: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin-top: 32px;
}

.upgrade-button {
  background: #fff;
  color: #0c75c2;
  border: none;
  border-radius: 24px;
  padding: 8px 24px;
  font-weight: 500;
  margin-top: 16px;
  cursor: pointer;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 24px;
  background-color: #f5f6fa;
  min-width: 0;
}

.main-content > p {
  color: #2e2e2e;
  font-family: "Work Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

/* Content Elements */
.banner-image {
  width: 100%;
  height: 252px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.content-heading {
  color: #0c75c2;
  font-size: 24px;
  font-weight: 600;
  margin: 24px 0 16px;
}

.dashboard-title {
  color: #2e2e2e;
  font-size: 24px;
  font-weight: 600;
}

.action-btn {
  padding: 6px 34px !important;
  color: #0959a3;
  border: 1px solid #0959a3;
  border-radius: 50px !important;
  background: transparent;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: linear-gradient(to right, #0b6fc0, #0ae0fc);
  color: white;
  border: 1px solid white;
}

#action-delete-btn {
  padding: 4px 34px;
  color: #ED4C5C;
  border: 1px solid #ED4C5C;
  border-radius: 50px !important;
  background: transparent;
  transition: all 0.3s ease;
}

#action-delete-btn:hover {
  background: #ED4C5C;
  color: white;
  border: 1px solid white;
}

/* Cards */
.stats-card,
.chart-card,
.list-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-card {
  background-color: #e0f1ff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  height: 100%;
}

/* Feature Elements */
.feature-icon {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-icon i {
  font-size: 32px;
  color: #0c75c2;
}

/* Chart Elements */
.chart-container {
  height: 300px;
  position: relative;
}

/* List Elements */
.list-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.list-item:hover {
  background-color: #f5f6fa;
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsorship-form input {
  height: 40px;
  background: #ddf2f9;
  color: #666666;
}

.sponsorship-form label {
  font-size: 14px !important;
  color: #0c74c2;
}

.text-editor-box {
  background: #e2ecf980;
}

.popup {
  height: 100vh;
  width: 100%;
  padding: 0 2%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 10000;
}

.delete-banner-box {
  max-width: 572px;
  width: 100%;
  padding: 40px 30px;
  transition: 0.2s linear;
}

.delete-banner-box h5 {
  font-size: 25px;
  color: #ed4c5c;
  font-weight: 500;
}

.banner-view-box {
  border-radius: 7px !important;
  width: 50%;
  padding: 23px 26px;
}

.preview-content {
  text-align: left !important;
}
.preview-content p{
color: #6c757d;
}
.preview-content p b{
  color: #4e4e4e;
}
.preview-content h6 b{
  color: #4e4e4e;
}
.preview-content h6 {
  font-weight: 400;
  color: #6c757d;
}
.preview-content h6 span{
  color: #32e75d;

}

.submit-banner-box {
  max-width: 572px;
  width: 100%;
  padding: 40px 30px;
  transition: 0.2s linear;
}

.submit-banner-box h5 {
  font-size: 25px;
  color: #0959a3;
  font-weight: 500;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
}

.popup-btn {
  padding: 6px 34px !important;
  color: #0959a3;
  border: 1px solid #0959a3;
  border-radius: 50px !important;
  background: transparent;
  transition: all 0.3s ease;
}

.popup-btn:hover {
  background: linear-gradient(to right, #0b6fc0, #0ae0fc);
  color: white;
  border: 1px solid white;
}

/* Right Sidebar */
.right-sidebar {
  width: 168px;
  background-color: #fff;
  padding: 16px 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* Ad Container */
.ad-container {
  width: 168px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.ad-container img {
  width: 168px;
  height: 168px;
  object-fit: cover;
}

/* Stats Container */
.stats-container {
  background-color: #f5f5f5;
  padding: 8px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #666;
  font-size: 12px;
}

.stat-item i {
  font-size: 14px;
}

/* Utility Classes */
.vertical-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 24px;
}

/* Button Styles */
.btn-icon {
  border: none;
  background: none;
  padding: 6px;
  color: #6b7280;
}

.btn-icon:hover {
  color: #0c75c2;
}

.log-out-btn {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 24px;
  background-color: #0c75c2;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.log-out-btn:hover {
  background-color: #0959a3;
}

.log-out-btn i {
  font-size: 20px;
}
.right-sidebar {
  width: 168px;
  background-color: #fff;
  padding: 16px 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* Ad Container */
.ad-container {
  width: 168px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.ad-container img {
  width: 168px;
  height: 168px;
  object-fit: cover;
}

/* Stats Container */
.stats-container {
  background-color: #f5f5f5;
  padding: 8px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #666;
  font-size: 12px;
}

.stat-item i {
  font-size: 14px;
}
.log-out-btn:hover {
  background-color: #0959a3;
}

.log-out-btn i {
  font-size: 20px;
}

.modal-content {
  box-shadow: 0 10px 30px rgba(255, 77, 103, 0.1);
}

.btn-close {
  opacity: 1;
  filter: none;
}

.btn-close:hover {
  opacity: 0.75;
}

.modal-content {
  box-shadow: 0 10px 30px rgba(255, 77, 103, 0.1);
}

.btn-close {
  opacity: 1;
  filter: none;
}

.btn-close:hover {
  opacity: 0.75;
}

/* Animation for modal entrance */
.modal.fade .modal-dialog {
  transform: scale(0.8);
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: scale(1);
}

/* Ensure modal maintains dimensions on smaller screens */
@media (max-width: 576px) {
  .modal-dialog {
    margin: 0.5rem;
  }
}

/* Mobile Menu Styles */
.navbar-toggler {
  border: none;
  padding: 0;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.offcanvas {
  width: 300px;
  background-color: #fff;
}

.offcanvas-header {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.mobile-nav-link {
  color: #8b8d97;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.mobile-nav-link:hover {
  background-color: rgba(12, 117, 194, 0.1);
  color: #0c75c2;
}

.mobile-menu-item {
  color: #8b8d97;
  text-decoration: none;
  padding: 0.75rem 1rem;
  display: block;
  transition: all 0.3s;
}

.mobile-menu-item:hover {
  color: #0c75c2;
  background-color: rgba(12, 117, 194, 0.1);
}

.mobile-user-menu {
  border-top: 1px solid #eee;
  margin-top: 1rem;
  padding-top: 1rem;
}

/* Responsive Header Adjustments */
@media (max-width: 991px) {
  .header {
    height: 70px;
    padding: 0 16px;
  }

  .logo {
    width: 80px;
    height: auto;
  }

  .logo-container {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}

/* Desktop Styles */
@media (min-width: 992px) {
  .nav-center {
    margin-left: auto;
    margin-right: auto;
  }
}

#mobileMenu {
  background: linear-gradient(90deg, #0c75c2 0%, #1ecee4 100%);
}

#mobileMenu a {
  color: white;
}

#mobileMenu > .text-muted {
  color: white !important;
}
#btn-close {
  color: white !important;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #f5f6fa;
}

/* Layout container */
.layout-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar styles */
.sidebar {
  width: 306px;
  background: #fff;
  transition: all 0.3s ease;
  padding: 24px;
  position: relative;
  z-index: 1050;
}

.sidebar.collapsed {
  width: 80px;
}

/* Toggle button */
.sidebar-toggle {
  position: absolute;
  right: -12px;
  top: 20px;
  width: 24px;
  height: 24px;
  background: #2d2d2d;
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1051;
  transition: transform 0.3s;
}

.sidebar.collapsed .sidebar-toggle {
  transform: rotate(180deg);
}

/* Menu items */
.menu-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #8b8d97;
  border-radius: 8px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.menu-item:hover {
  background: rgba(12, 117, 194, 0.1);
  color: #0c75c2;
}

.menu-item.active {
  background: #0c75c2;
  color: #fff;
}

.sidebar-icon {
  width: 30px !important;
  height: 30px !important;
  margin-right: 12px;
  flex-shrink: 0;
}

.menu-text {
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.2s;
}

.sidebar.collapsed .menu-text {
  opacity: 0;
  width: 0;
  margin: 0;
}

/* Dropdown menu */
.menu-item-dropdown {
  background: #fff;
  color: #8b8d97;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}

.menu-item-dropdown:hover {
  background: rgba(12, 117, 194, 0.1);
  color: #0c75c2;
}

.menu-item-dropdown.active {
  background: #0c75c2;
  color: #fff;
}

.menu-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.arrow {
  transition: transform 0.3s;
}

.menu-item-dropdown.active .arrow {
  transform: rotate(90deg);
}

.dropdown-content {
  padding-left: 48px;
  margin-bottom: 16px;
  display: none;
}

.dropdown-content.show {
  display: block;
}

.dropdown-item-custom {
  color: #8b8d97;
  padding: 8px 0;
  display: block;
  text-decoration: none;
  transition: color 0.3s;
}

.dropdown-item-custom:hover {
  color: #0c75c2;
}

/* Upgrade box */
.upgrade-box {
  background: linear-gradient(90deg, #0c75c2 0%, #1ecee4 100%);
  color: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin-top: 32px;
  transition: opacity 0.3s;
}

.sidebar.collapsed .upgrade-box {
  display: none;
}

.upgrade-button {
  background: #fff;
  color: #0c75c2;
  border: none;
  border-radius: 24px;
  padding: 8px 24px;
  font-weight: 500;
  margin-top: 16px;
  cursor: pointer;
}

/* Logout button */
.log-out-btn {
  display: flex;
  align-items: center;
  padding: 5px 15px 5px 5px;
  color: #fff;
  background: #0c75c2;
  border: none;
  border-radius: 8px;
  margin-top: 24px;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s;
}

.log-out-btn:hover {
  background: #0959a3;
}

/* Mobile overlay */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}

.sidebar-overlay.active {
  display: block;
}

/* Mobile styles */
@media (max-width: 991px) {
  .sidebar {
    position: fixed;
    left: -306px;
    height: 100vh;
    overflow-y: auto;
  }

  .sidebar.mobile-active {
    left: 0;
  }

  .sidebar-toggle {
    display: none;
  }

  .layout-container {
    margin-left: 0 !important;
  }
}

/* Collapsed dropdown behavior */
.sidebar.collapsed .dropdown-content {
  position: absolute;
  left: 100%;
  top: 0;
  width: 200px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 8px;
  border-radius: 8px;
  display: none;
}

.sidebar.collapsed .menu-item-dropdown:hover .dropdown-content {
  display: block;
}
.mobile-toggle-btn {
  position: fixed;
  left: 0;
  top: 120px; /* Adjust based on your header height */
  width: 24px;
  height: 24px;
  background: #2d2d2d;
  border: none;
  border-radius: 0 4px 4px 0;
  color: #fff;
  display: none; /* Hidden by default on desktop */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1060;
  transition: left 0.3s ease;
}

.mobile-toggle-btn i {
  font-size: 14px;
}

/* Mobile sidebar styles */
@media (max-width: 991px) {
  .sidebar {
    position: fixed;
    left: -306px; /* Start off-screen */
    height: 100vh;
    transition: left 0.3s ease;
    z-index: 1050;
    top: 70px; /* Height of mobile header */
  }

  .mobile-toggle-btn {
    display: flex;
  }

  .sidebar.mobile-active {
    left: 0;
  }

  .sidebar.mobile-active + .mobile-toggle-btn {
    left: 306px;
  }

  /* Hide the desktop sidebar toggle */
  .sidebar-toggle {
    display: none;
  }

  /* Overlay when sidebar is open */
  .sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
  }

  .sidebar-overlay.active {
    display: block;
  }
}

@media (max-width: 991px) {
  .main-content {
    padding: 16px;
    margin-left: 0;
    width: 100%;
  }

  .dashboard-title {
    font-size: 20px;
  }

  /* Stats Cards */
  .stats-card {
    padding: 16px;
    margin-bottom: 16px;
  }

  .stats-card h3 {
    font-size: 20px;
  }

  /* Charts */
  .chart-card {
    margin-bottom: 16px;
    padding: 16px;
  }

  .chart-container {
    height: 250px; /* Slightly smaller on mobile */
  }

  /* List Cards */
  .list-card {
    margin-bottom: 16px;
    padding: 16px;
  }

  .list-item {
    padding: 10px;
  }

  /* Right Sidebar (Ads) */
  /* Layout container modification */
  .layout-container {
    flex-direction: column;
  }

  /* Right sidebar modifications for mobile */
  .right-sidebar {
    width: 100%;
    padding: 16px;
    margin-top: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  /* Ad container modifications for mobile */
  .ad-container {
    width: calc(50% - 10px); /* Two ads per row with gap */
    margin-bottom: 0;
  }

  .ad-container img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1; /* Maintain square aspect ratio */
  }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
  .ad-container {
    width: 100%; /* Full width on very small screens */
    max-width: 300px; /* Maximum width for better appearance */
  }

  .right-sidebar {
    padding: 16px 8px;
  }
  /* Adjust grid layout for stats */
  .col-md-3 {
    width: 100%;
  }

  /* Make charts full width */
  .col-md-6 {
    width: 100%;
  }

  .chart-container {
    height: 200px; /* Even smaller on mobile */
  }

  /* Adjust list items */
  .list-item {
    flex-direction: column;
    gap: 10px;
  }

  .list-item .btn-icon {
    align-self: flex-end;
  }

  /* Banner image */
  .banner-image {
    height: auto;
    margin-top: 16px;
  }

  /* Header content adjustments */
  .dashboard-title {
    font-size: 18px;
  }

  .btn-outline-primary {
    padding: 6px 12px;
    font-size: 14px;
  }
}

/* Medium Devices */
@media (min-width: 577px) and (max-width: 767px) {
  /* Two columns for stats on tablets */
  .col-md-3 {
    width: 50%;
  }
}

/* Large Devices */
@media (min-width: 768px) and (max-width: 991px) {
  /* Two columns for stats on small laptops */
  .col-md-3 {
    width: 50%;
  }
}

/* Utility Classes for Responsive Design */
@media (max-width: 991px) {
  .d-mobile-none {
    display: none !important;
  }

  .d-mobile-block {
    display: block !important;
  }

  .text-mobile-center {
    text-align: center !important;
  }

  .mb-mobile-3 {
    margin-bottom: 1rem !important;
  }

  .p-mobile-2 {
    padding: 0.5rem !important;
  }
}

/* Modal Responsiveness */
@media (max-width: 576px) {
  .modal-dialog {
    margin: 0.5rem;
  }

  .modal-content {
    border-radius: 12px;
  }

  .modal-body {
    padding: 1rem;
  }
}

/* Chart Responsiveness */
@media (max-width: 991px) {
  .chart-card {
    overflow-x: auto;
  }

  .chart-container {
    min-width: 300px;
  }
}

/* List Items Responsiveness */
@media (max-width: 576px) {
  .list-item {
    padding: 12px 8px;
  }

  .list-item h6 {
    font-size: 14px;
  }

  .list-item .text-muted {
    font-size: 12px;
  }

  .icon-box {
    width: 32px;
    height: 32px;
  }

  .banner-view-box {
    width: 90%;
  }
}

/* Stats Card Responsiveness */
@media (max-width: 576px) {
  .stats-card {
    text-align: center;
  }

  .stats-card .d-flex {
    flex-direction: column;
    align-items: center;
  }

  .stats-card .btn-icon {
    margin-top: 8px;
  }
}

.header {
  height: 108px;
  background: linear-gradient(90deg, #0c75c2 0%, #1ecee4 100%);
  padding: 0 32px;
  justify-content: flex-start;
  color: #fff;
}

.header > div:last-child {
  margin-left: auto;
}

/* Logo Styles */
.logo-container {
  display: flex;
  align-items: center;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
  width: 116px;
  height: 90.925px;
  flex-shrink: 0;
}

.trustpilot {
  width: 120px;
}

/* Navigation Styles */
.nav-center {
  margin-left: 40px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  padding: 0 24px;
  border-radius: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s;
}

.nav-link:last-child {
  border-right: none;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* User Elements */
.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff4444;
  color: white;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dropdown Menu Styles */
.dropdown-menu {
  background: white;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  color: #2e2e2e;
  transition: background-color 0.3s;
}

.dropdown-item:hover {
  background-color: rgba(12, 117, 194, 0.1);
  color: #0c75c2;
}

/* Mobile Menu Styles */
#mobileMenu {
  background: linear-gradient(90deg, #0c75c2 0%, #1ecee4 100%);
}

#mobileMenu a {
  color: white;
}

.mobile-nav-link {
  color: #8b8d97;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.mobile-nav-link:hover {
  background-color: rgba(12, 117, 194, 0.1);
  color: #0c75c2;
}

/* Mobile User Menu Styles */
.mobile-user-profile {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-item {
  color: white;
  text-decoration: none;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.3s;
}

.mobile-menu-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-item i {
  font-size: 20px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .header {
    height: 70px;
    padding: 0 16px;
  }

  .logo {
    width: 80px;
    height: auto;
  }

  .logo-container {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}

@media (min-width: 992px) {
  .nav-center {
    margin-left: auto;
    margin-right: auto;
  }
}

.notification-dropdown {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 2px;
  margin-top: 10px;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff4444;
  color: white;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-item {
  transition: background-color 0.3s;
  border-radius: 6px;
}

.notification-item:hover {
  background-color: #f8f9fa;
  cursor: pointer;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background: #e0f1ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-content {
  flex: 1;
}

.dropdown-divider {
  margin: 0;
  border-color: #e9ecef;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .notification-dropdown {
    width: 100% !important;
    margin: 0;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    border-radius: 0;
  }
}

.dropdown-toggle-custom::after {
  display: none !important;
}
.main-content {
  padding: 24px;
  background-color: #f9f9f9;
}

.upload-container {
  border: 2px dashed #dee2e6;
  transition: all 0.3s ease;
}

.upload-container:hover {
  border-color: #0c75c2;
  cursor: pointer;
}

.text-editor-container {
  background: white;
}

.editor-toolbar {
  border-bottom: none !important;
}

.editor-toolbar button {
  padding: 0.25rem 0.5rem;
  margin-right: 0.25rem;
}

.editor-content {
  min-height: 200px;
}

.editor-content textarea {
  resize: none;
  min-height: 150px;
}

.goals-card {
  background: #f5f6fa;
  padding: 20px;
  border-radius: 10px;
}

.goals-card-heading h3 {
  color: #303030;
  font-size: 20px;
}

.goals-content input {
  margin-top: -5px;
}

.goals-text h5 {
  color: #2d2d2d;
  font-size: 16px;
}

.goals-text p {
  color: #666;
  margin-top: -10px;
}

.website-container h5 {
  font-size: 15px;
}

.website-container input {
  outline: none;
  width: 100%;
  padding: 5px 10px;
  /* background: rgb(226, 255, 226); */
  border: 2px solid #0b6fc0;
  border-radius: 5px;
}

.schedule-card {
  background: #f5f6fa;
  padding: 20px;
  border-radius: 10px;
}

.schedule-card .duration {
  background: white !important;
  margin-top: 20px;
  border-radius: 10px;
  padding: 20px;
}

.schedule-card .budget {
  background: white !important;
  margin-top: 20px;
  border-radius: 10px;
  padding: 20px;
}

.schedule-card .budget h6 {
  color: #0959a3;
  font-size: 1.4rem;
}

.schedule-card .budget input {
  width: 100%;
  padding: 6px;
}

.schedule-card .duration input {
  padding: 6px 13px;
  border: 2px solid #0b6fc0;
  border-radius: 5px;
}

.schedule-card .budget input {
  padding: 6px 13px;
  border: 2px solid #0b6fc0;
  border-radius: 5px;
}

.result-card {
  background: #f5f6fa;
  padding: 20px;
  border-radius: 10px;
}

.result-heading h4 {
  color: #303030;
  font-size: 20px;
}

.result-numbers {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgb(255, 255, 255);
  margin-top: 10px;
}

.result-numbers h4 {
  font-size: 25px;
  font-weight: 400;
}

.result-numbers h5 {
  color: #616161;
  font-size: 17px !important;
}

.multi-select {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  position: relative;
  width: 420px !important;
  user-select: none;
}

.multi-select .multi-select-header {
  border: 1px solid #dee2e6;
  padding: 7px 30px 7px 12px;
  overflow: hidden;
  gap: 7px;
  min-height: 45px;
}

.multi-select .multi-select-header::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23949ba3' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z'/%3E%3C/svg%3E");
  height: 12px;
  width: 12px;
}
.multi-select .multi-select-header.multi-select-header-active {
  border-color: #c1c9d0;
}
.multi-select .multi-select-header.multi-select-header-active::after {
  transform: translateY(-50%) rotate(180deg);
}
.multi-select
  .multi-select-header.multi-select-header-active
  + .multi-select-options {
  display: flex;
}
.multi-select .multi-select-header .multi-select-header-placeholder {
  color: #65727e;
}
.multi-select .multi-select-header .multi-select-header-option {
  display: inline-flex;
  align-items: center;
  background-color: #f3f4f7;
  font-size: 14px;
  padding: 3px 8px;
  border-radius: 5px;
}
.multi-select .multi-select-header .multi-select-header-max {
  font-size: 14px;
  color: #65727e;
}
.multi-select .multi-select-options {
  display: none;
  box-sizing: border-box;
  flex-flow: wrap;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  margin-top: 5px;
  padding: 5px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
}
.multi-select .multi-select-options::-webkit-scrollbar {
  width: 5px;
}
.multi-select .multi-select-options::-webkit-scrollbar-track {
  background: #f0f1f3;
}
.multi-select .multi-select-options::-webkit-scrollbar-thumb {
  background: #cdcfd1;
}
.multi-select .multi-select-options::-webkit-scrollbar-thumb:hover {
  background: #b2b6b9;
}
.multi-select .multi-select-options .multi-select-option,
.multi-select .multi-select-options .multi-select-all {
  padding: 4px 12px;
  height: 42px;
}
.multi-select
  .multi-select-options
  .multi-select-option
  .multi-select-option-radio,
.multi-select
  .multi-select-options
  .multi-select-all
  .multi-select-option-radio {
  margin-right: 14px;
  height: 16px;
  width: 16px;
  border: 1px solid #ced4da;
  border-radius: 4px;
}
.multi-select
  .multi-select-options
  .multi-select-option
  .multi-select-option-text,
.multi-select
  .multi-select-options
  .multi-select-all
  .multi-select-option-text {
  box-sizing: border-box;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: inherit;
  font-size: 16px;
  line-height: 20px;
}
.multi-select
  .multi-select-options
  .multi-select-option.multi-select-selected
  .multi-select-option-radio,
.multi-select
  .multi-select-options
  .multi-select-all.multi-select-selected
  .multi-select-option-radio {
  border-color: #fff;
  background-color: #40a3ff;
}
.multi-select
  .multi-select-options
  .multi-select-option.multi-select-selected
  .multi-select-option-radio::after,
.multi-select
  .multi-select-options
  .multi-select-all.multi-select-selected
  .multi-select-option-radio::after {
  content: "";
  display: block;
  width: 3px;
  height: 7px;
  margin: 0.12em 0 0 0.27em;
  border: solid #fff;
  border-width: 0 0.15em 0.15em 0;
  transform: rotate(45deg);
}
.multi-select
  .multi-select-options
  .multi-select-option.multi-select-selected
  .multi-select-option-text,
.multi-select
  .multi-select-options
  .multi-select-all.multi-select-selected
  .multi-select-option-text {
  color: #000;
}
.multi-select .multi-select-options .multi-select-option:hover,
.multi-select .multi-select-options .multi-select-option:active,
.multi-select .multi-select-options .multi-select-all:hover,
.multi-select .multi-select-options .multi-select-all:active {
  background-color: #f3f4f7;
}
.multi-select .multi-select-options .multi-select-all {
  border-bottom: 1px solid #f1f3f5;
  border-radius: 0;
}
.multi-select .multi-select-options .multi-select-search {
  padding: 7px 10px;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  margin: 10px 10px 5px 10px;
  width: 100%;
  outline: none;
  font-size: 16px;
}
.multi-select .multi-select-options .multi-select-search::placeholder {
  color: #b2b5b9;
}
.multi-select .multi-select-header,
.multi-select .multi-select-option,
.multi-select .multi-select-all {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 16px;
  color: #212529;
}
.editor-content textarea:focus {
  box-shadow: none;
}

.form-control {
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.form-control:focus {
  border-color: #0c75c2;
  box-shadow: 0 0 0 0.25rem rgba(12, 117, 194, 0.1);
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
}

.nav-tabs .nav-link {
  color: #6c757d;
  border: none;
  padding: 0.75rem 1rem;
}

.nav-tabs .nav-link.active {
  color: #0c75c2;
  border-bottom: 2px solid #0c75c2;
  background: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-content {
    padding: 16px;
  }

  .btn {
    padding: 0.5rem 1rem;
  }
}

.popup {
  height: 100vh;
  width: 100%;
  padding: 0 2%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 10000;
}

.paired-box {
  max-width: 572px;
  width: 100%;
  padding: 40px 30px;
}

.paired-box h5 {
  font-size: 25px;
  color: #ed4c5c;
  font-weight: 500;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
}

.popup-btn {
  padding: 6px 34px;
  color: #0959a3;
  border: 1px solid #0959a3;
  border-radius: 20px;
  background: transparent;
  transition: all 0.3s ease;
}

.popup-btn:hover {
  background: linear-gradient(to right, #0b6fc0, #0ae0fc);
  color: white;
  border: 1px solid white;
}

.m-remote-care-dropdown {
  background: white;
  width: 100%;
  margin-top: 10px;
  padding: 10px 0px;
  border-radius: 10px;
}

.m-remote-care-dropdown li {
  padding: 5px 10px;
  border-radius: 5px;
  margin-top: 5px;
  list-style: none;
  color: black !important;
}
.m-remote-care-dropdown li:hover {
  background: #ececec;
}

.sidebar.collapsed {
  width: 100px !important;
}

.menu-item {
  padding: 13px !important;
}
.menu-item-dropdown {
  padding: 13px !important;
}

.upgrade-box {
  display: flex;
  flex-direction: column;
  margin-top: 30px !important;
  margin-bottom: 18px !important;
}

.upgrade-box .upgrade-text {
  font-size: 16px;
}

.profile-box {
  max-width: 622px;
  width: 100%;
  padding: 40px 30px;
}

.profile-box h5 {
  font-size: 25px;
  color: #0c74c2;
  font-weight: 500;
}

.profile-box .profile-link h6 {
  color: #555555;
}

.dropdown-content {
  display: none;
}

.dropdown-content.show {
  display: block;
}

.dropdown-item-custom.active {
  color: #0c75c2;
}

.sidebar-icon {
  width: 30px !important;
  height: 30px !important;
}

@media (max-width: 500px) {
  .multi-select {
    width: 179px !important;
  }
}

@media (max-width: 375px) {
  .btn-container {
    flex-direction: column;
  }
}

.content-area {
  padding: 30px;
}

.section-title {
  color: #0b6fc0;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}

.sponsor-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.sponsor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sponsor-img  img{
  width: 100% !important;
}
.sponsor-img {
  width: 100% !important;
  overflow: hidden !important;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

#previewOverlay {
  z-index: 10000 !important;
}

.sponsor-content {
  padding: 15px;
  text-align: center;
}

.sponsor-title {
  color: #0b6fc0;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
}

.sponsor-status {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #0b6fc0;
}

.status-live {
  color: #28a745;
}

.status-expired {
  color: #dc3545;
}

.status-pending {
  color: #ffc107;
}

.create-card {
  padding-top: 40px;
  padding-bottom: 50px;
  background-color: rgba(11, 111, 192, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.buttom-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-top: 10px;
  background: white !important;
  color: #0959a3 !important;
}

.create-icon img {
  filter: invert(100);
}
.create-icon {
  width: 40px;
  height: 40px;
  background-color: #bfbfbf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: white;
}

.create-text {
  color: #0b6fc0;
  font-weight: 600;
}

/* Preview Popup Styles */
.preview-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.preview-overlay.active {
  opacity: 1;
  visibility: visible;
}

.preview-container {
  position: relative;
  max-width: 90%;
  padding: 20px;
  border-radius: 10px;
  background: white;
  max-height: 90vh;
}

.preview-image {
  max-width: 100%;
  max-height: 90vh;
  display: block;
  border-radius: 5px;
}

.preview-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: #0b6fc0;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 14px;
}


#delete-banner {
  z-index: 10000 !important;
}


@media (max-width: 500px) {
    .form-group{
     flex-direction: column;
    }

        .multi-select {
        width: 100% !important;
    }
}

#country{
      height: 40px;
    background: #ddf2f9;
    color: #666666;
    border: none;
    width: 100% !important;
    padding: 0 10px;
    border-radius: 8px;
    outline: none;
}
#country2{
      height: 40px;
    background: #ddf2f9;
    color: #666666;
    border: none;
    width: 100% !important;
    padding: 0 10px;
    border-radius: 8px;
    outline: none;
}

.preview-status-live{
  background: #28a745 !important;
  padding: 5px 22px;
  color: white !important;
}
.preview-status-pending{
  background: #ffc107 !important;
  padding: 5px 22px;
  color: white !important;
}

.preview-status-expired{
  background: #dc3545 !important;
  padding: 5px 22px;
  color: white !important;
}

@media (max-width: 991px) {
  .banner-view-box .container-content{
    flex-direction: column-reverse !important;
  }
  .banner-view-box .row img{
    width: 130px;
    margin-top: 20px;
  }
  .banner-view-box{
    height: auto;
    margin-top: 50%;
    /* overflow: scroll; */
  }
  .preview-overlay{
    padding-top: 5% !important;
    padding-bottom: 5% !important;
    overflow: scroll;
  }
  #preview-banner{
    padding-top: 5% !important;
    padding-bottom: 5% !important;
    overflow: scroll;
  }
}

@media (max-width: 500px) {
  .sponsor-status{
    /* display: flex; */
    flex-direction: row !important;
  }
}

@media (max-width: 991px) {
    .form-group{
     flex-direction: column;
    }
        .form-group input{
          width: 100%;
        }
}