body{
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: 0px !important;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.share-btn {
  background-color: #4CAF50; /* Green background */
  color: white; /* White text */
  padding: 10px 20px; /* Padding for size */
  font-size: 16px; /* Font size */
  border: none; /* No borders */
  cursor: pointer; /* Pointer on hover */
  border-radius: 5px; /* Rounded corners */
  margin-top: 10px; /* Add some space on top */
}

.share-btn:hover {
  background-color: #45a049; /* Darker green on hover */
}


a{
    text-decoration: none !important;
}

.otp-field {
    flex-direction: row;
    column-gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
.otp-field input {
    height: 45px;
    width: 42px;
    border-radius: 6px;
    outline: none;
    font-size: 1.125rem;
    text-align: center;
    border: 1px solid #ddd;
  }

  .otp-field input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  }

  .otp-field input::-webkit-inner-spin-button,
  .otp-field input::-webkit-outer-spin-button {
    display: none;
  }

  .header {
    width: 100%;
    height: 70px;
    /* background-color: #f8f9fa; */
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}

.menu-toggle {
    display: none;
    font-size: 20px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
}

.search-bar {
    flex-grow: 1;
    margin-left: 270px; /* To align with sidebar */
    display: flex;
    align-items: center;
}

.search-bar input {
    width: 100%;
    max-width: 400px;
    padding: 8px 12px;
    border: none;
    border-radius: 20px;
    outline: none;
    /* background-color: ; */
    /* box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); */

    background-repeat: no-repeat;
    background-position: 12px center;
}

.user-actions {
    display: flex;
    align-items: center;
}

.user-actions img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.user-actions button {
    padding: 5px 10px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.main {
    display: flex;
    flex-grow: 1;
    flex-direction: row;
}

.sidebar {
    min-width: 250px;
    /* background-color: #e9ecef; */
    border-right: 1px solid #e9ecef;
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.content {
    flex-grow: 1;
    padding: 20px;
    /* background-color: #ffffff; */
    box-sizing: border-box;
    margin-left: 250px; /* To align content with sidebar */
}

.header h1 {
    margin: 0;
    font-size: 24px;
    margin-left: 270px; /* To align with sidebar */
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li {
    margin: 10px 0;
}

@media (min-width: 768px){
    .mobile{
        display: none !important;
    }
     .form-responsive{
        width: 80% !important;
    }

    .desktop-ui-view{
        padding-left: 0px; 
        padding-right: 30px
    }

    .discover-tile {
      display: inline-block; /* Allow tiles to appear inline */
      position: relative;
      width: 200px;
      height: 200px;
      overflow: hidden;
      border-radius: 8px; /* Optional: For rounded corners */
      margin: 10px; /* Add spacing between tiles */
      background-color: #f0f0f0; /* Fallback color */
      transition: transform 0.3s ease;
    }

}

/* Media Query for Mobile Screens */
@media (max-width: 768px) {

    .discover-tile {
      display: inline-block; /* Allow tiles to appear inline */
      position: relative;
      width: 115px;
      height: 115px;
      overflow: hidden;
      border-radius: 8px; /* Optional: For rounded corners */
      margin: 2px; /* Add spacing between tiles */
      background-color: #f0f0f0; /* Fallback color */
      transition: transform 0.3s ease;
    }
   

    .form-responsive{
        width: 100% !important;
    }

    .desktop{
        display: none !important;
    }

    .main {
        flex-direction: column;
    }

    .sidebar {
/*        width: 100%;*/
        max-width: 250px !important;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        background-color: #e9ecef;
        transform: translateX(-100%);
        position: absolute;
        z-index: 1000;
        min-height: 100%;
        margin-top: 70px;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .content {
        padding: 10px;
        margin-left: 0; /* Remove left margin */
    }

    .header h1 {
        font-size: 20px;
        margin-left: 0; /* Remove left margin */
    }

    .search-bar {
        margin-left: 10px; /* Adjust for mobile */
    }

    .search-bar input {
        width: 100%;
        background-position: 10px center; /* Adjust icon position */
    }

    .menu-toggle {
        display: block;
    }
}

.menu-item{
    padding: 7px;
    color: gray;
    border-radius: 5px;
}

.menu-item:hover{
    background-color: whitesmoke;
    color: #EA002A;
}

.menu-item-active{
    background-color: #EA002A !important;
    color: white !important;
}

.sub-menu-item-active{
    background-color: whitesmoke !important;
}

.ac-card-item{
    border: 1px solid gainsboro;
    min-height: 200px;
    border-radius: 10px;
    padding: 15px;
}
