.dropdown {
    position: relative;
    display: inline-block;
    z-index: 100;
}
.dropdown,
.dropdown-content {
    position: relative; /* or position: absolute; */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #4a554f;
    border-radius: 10px; 
    overflow: hidden; 
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100; /* Ensure this property is present */
}


.dropdown-content a {
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    z-index: 100;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}
  .custom-btn {
      background-color: #275777;
      color: #fff; 
      font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      border-radius: 8px; 
      padding: 8px 20px; 
      text-decoration: none; 
      transition: background-color 0.3s ease;
  }

  .custom-btn:hover {
      background-color: #681f72; 
  }
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
input:checked + .slider {
    background-color: #070000;
}

input:focus + .slider {
    box-shadow: 0 0 1px #012502;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.container {
    background-color: white; 
}

.card {
    background-color: #f0f0f0; 
}

.dark .container {
    background-color: #1a1a1a; 
}

.dark .card {
    background-color: #333;
    color: #e7eb26f8;
}

.dark{
    background-color: black;
    color: #fffffff8;
}
.dark.container{
  color: #070000;
}

.owl-carousel {
    z-index: 100; /* Adjust this value accordingly */
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #030122;
    transition: 0.4s;
    border-radius: 20px;
    z-index: 50; 
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}


.download-icon {
            color: #00cc00; 
            font-size: 18px;
            font-weight: bold;
        }
        
        .update-icon {
            color: #fd4444; 
            font-size: 18px; 
            font-weight: bold;
        }