/* Custom CSS styles */

.main-container {
    max-width: 720px;
    width: 100%;
    position: relative;
}

.bg-dark {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.header {
    top: 0;
    height: 90px;
    /* width: ; */
    position: absolute;
    background-color: #4549B6;
    z-index: 999;
}

.marquee {
    font-size: 14px;
    /* background-color: #ffc800; */
}

.logo {
    height: 60px;
}

.btn-account {
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 10px; */
}

.btn-account img {
    height: 35px;
    display: block;
}

.btn-account span {
    font-size: 12px;
    font-weight: 600;
    display: block;
    margin: 0; /* Optional: Reset margin to control spacing */
}


.info {
    font-size: 12px;
}

.content {
    margin-top: 90px;
    height: calc(100vh - 90px);
    overflow-y: auto;
    background-color: #4549B6;
    position: relative;
}

.carousel-container {
    position: sticky;
    top: 0;
    height: fit-content;
    /* margin-bottom: 100px; */
}

.bgslider {
    background: linear-gradient(0deg, rgba(69, 73, 182, 1) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    z-index: 0;
    top: 80%;
    bottom: 0;
    width: 100%;
}

.menu {
    height: 100%; 
    position: sticky;
    top:0;
    /* background-color: white; */
}

.bar-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    position: relative;
}

.bar {
    height: 45px;
    width: 100%;
}

.menu-container {
    overflow-y: auto;
}

.menu-card {
    width: 30%;
    color: #301D6E;
}


/* The Modal (background) */
.modal-egi {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    margin: auto;
    padding: 20px;
    border: 0;
    width: 80%;
    position: relative;
    border-radius: 8px;
  }
