@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
   
}
body {
     /* font-family: "Comfortaa";  */
    background: #f8f8f8;
    /*  */
}
textarea{
    border-radius: 12px;
}
/* TOP - BAR SECTION STYLES */
.nav_container {
    background: linear-gradient(45deg, #816ae9, #4d38af);
    z-index: 9999;
    width: 100%;
}
.top_bar_container {
    padding: 5px 0;
    display: flex;
    background: linear-gradient(45deg, #7b64e2, #42424200);
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.header_text {
    font-size: 16px;
}
.logo_container {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}
.logo_container img {
    height: 40px;
}
.actions_container {
    height: 40px;
    border: 1px solid white;
    border-radius: 10px;
    display: flex;
    z-index: 0;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    background: #b9df10;
}
.actions_container .action_1 {
    text-decoration: none;
    cursor: pointer;
    color: white;
    font-weight: 600;
    z-index: 1;
    height: 100%;
    border-radius: 9px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    padding: 0 15px;
    background: linear-gradient(90deg, #8770f0 0%, #4b36ad 100%);
}
.actions_container .action_2 {
    text-decoration: none;
    cursor: pointer;
    color: white;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    padding: 0 15px;
    font-weight: 500;
    background: linear-gradient(90deg, #45B8B5  0%, #7DDDDD 100%);
}
.tools_container {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}
.theme_language_container {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}
.theme_mode_container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.theme_mode_container img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.language_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}
.language_container img {
    height: 20px;
    margin: 0;
}
.language_label {
    color: white;
    font-weight: 600;
}
.tools_container .profile_container {
    display: flex;
    gap: 15px;
    position: relative;
    align-items: center;
    justify-content: center;
}
.tools_container .profile_container .welcome_text {
    color: white;
    font-weight: 600;
}
.tools_container .profile_container .image_container_ {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid white;
}
.profile_container .image_container_ img {
    cursor: pointer;
    height: 100%;
    width: 100%;
}
.menu_container {
    cursor: pointer;
    display: none;
    position: absolute;
    top: 15px;
    right: 14px;
}
.menu_container .bar-icons {
    color: white;
    font-size: 1.8rem;
    display: none;
}

@media (max-width: 1000px) {
    .top_bar_container {
        justify-content: space-between;
        padding: 0 20px;
    }
    .logo_container img {
        height: 30px;
    }
    .header_text {
        font-size: 12px;
    }
    .tools_container {
        gap: 15px;
    }
    .theme_language_container {
        gap: 15px;
    }
}
@media (max-width: 780px) {
    .menu_container .bar-icons {
        display: flex;
    }
    .menu_container {
        display: flex;
    }
    .actions_container {
        /* flex-direction: column; */
        /* justify-content: start; */
        /* align-items: start; */
        height: 30px;
        position: absolute;
        left: 1rem;
        top: 5.2rem;
        display: none;
    }
    .theme_language_container {
        flex-direction: row-reverse;
        position: absolute;
        right: 1.7rem;
        top: 5.5rem;
        display: none;
    }
    .profile_container {
        position: relative;
        right: 2rem;
    }
    .nav_container_open {
        height: 9rem;
    }
    .top_bar_container {
        padding: 0 20px 0 14px;
    }
}
@media (max-width: 384px) {
    #welcome_text_username {
        display: none;
    }
}

/* FOOTER SECTION STYLES */
.custom-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background:linear-gradient(90deg, #705BCB, #60FFD2);
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    font-size: 16px;
}

/* content styling */
.nav-pills {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    padding: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: fit-content;
}
.nav-item li {
    padding: 6px 10px;
}
.nav-item {
    height: 50px;
    max-width: 120px;
    width: 100%;
    border-radius: 8px;
    border: 2px solid #e2e2e2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-link {
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.form-group input:focus {
    outline: none !important;
    box-shadow: none;
}
.location_inputs input:focus {
    outline: none !important;
    box-shadow: none;
}
.row select:focus {
    outline: none !important;
    box-shadow: none;
}
.form-group textarea {
    font-size: 16px;
    font-weight: 700;
}
.form-group textarea:focus {
    outline: none !important;
    box-shadow: none;
}
.styling-button {
    border-radius: 8px !important;
    height: 72px;
    border: 1px solid #e3ecf2;
    background: #ffffff;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 64px #2a354f0d;
    padding-left: 15px;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: bold;
    position: relative;
}

.styling-button span {
    background: #000000;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 500 !important;
}
.styling-button .gradient-icon {
    background: #705BCA;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    font-size: 15px;
    animation: auroraGradient 6s ease-in-out infinite;
}
@keyframes auroraGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.plus-button {
    position: absolute;
    right: 20px;
    color: #4c38aa;
    font-size: 18px;
}
.qr_download_container button {
    height: 49px;
    cursor: pointer;
    margin: auto;
    width: 85%;
    background-color: #24b2b2;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: white;
    border-radius: 6px !important;
    gap: 5px;
}
.show_qr_container {
    overflow: hidden;
    padding-bottom: 40px;
    width: fit-content;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 30px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}
.qr_download_container {
    width: 100%;
}

.formats_download_container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
}
.format {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.format i {
    font-size: 1rem;
    color: #000000;
}

.format span {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}
.main_container {
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding-bottom: 3rem;
    /* height: 100vh; */
}
/* .main_container::after {
    content: "";
    position: absolute;
    background: url(https://i.ibb.co/k5PKq19/d5044791-02f7-44b8-9492-127060ce6e0b-Converted-1.png);
    top: 0;
    right: -4rem;
    width: 720px;
    height: 100%;
    z-index: -1;
} */


@media (max-width: 991px) {
    .main_container::after {
        content: "";
        position: absolute;
        background: none;
        top: 0;
        right: -10rem;
        width: 720px;
        height: 100%;
        z-index: -1;
    }
}

.heading_label {
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
}

.subheading_label {
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
}
.custom_input_field select:focus {
    outline: none !important;
    box-shadow: none;
}
.custom_select {
    background-color: #ffffff!important;
    border-radius: 48px !important;
    font-weight: 700 !important;
    height: 49px !important;
    border: 1px solid #7461de91!important;
}
.custom_input {
    background-color: #ffffff !important;
    border-radius: 48px !important;
    font-weight: 700 !important;
    height: 49px !important;
    border: 1px solid #7461de91 !important;
}
.custom_textarea {
    background-color: #ffffff !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
}
.custom_input_field input:focus {
    outline: none !important;
    box-shadow: none;
}
.sp-original-input-container {
    background: transparent;
}

.qr_download_container .resultholder svg g:nth-child(4) {
    display: none;
}

/* modal styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px); 
    transition: opacity 0.3s ease-in-out;
   
}
#loginModal.modal{
    background-image: url(assets/images/login.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    overflow-x: hidden;
    z-index: 99999;
    scrollbar-width: none;
}
#RegisterModal.modal{
    background-image: url(assets/images/login.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    overflow-x: hidden;
     z-index: 99999;
     scrollbar-width: none;
}
#PasswordResetModal.modal{
    background-image: url(assets/images/login.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    overflow-x: hidden;
     z-index: 99999;
     scrollbar-width: none;

}
.nvm_password{
    color: #ffffff;
    font-weight: 500;

}
.modal-content {
   background: linear-gradient(
  to right,
 rgb(183 198 255 / 20%), rgb(230 0 255 / 10%));
    margin: 10% auto;
    padding: 20px 25px;
    border-radius: 8px;
    width: 90%;
    max-width: 450px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    left: 0%;
    border: none;
    backdrop-filter: blur(15px); /* Glass effect */
    animation: fadeIn 0.3s ease-in-out;
    position: relative;
    
}
/* Modal Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@media screen and (max-width:1300px) {
    .modal-content{
        top:-10%;
        scale: 100%;

    }
    .modal-content-register {
        transform: scale(0.7); /* Scale down to 70% */
        transform-origin: center; /* Keeps scaling centered */
        top: -15%;
        
    }
 
}
@media (min-resolution: 120dpi) and (max-resolution: 160dpi) {
    .modal-content-register {
        transform: scale(0.9);
        transform-origin: center; /* Keeps scaling centered */
        top: -10%;
    }
}
.modal-content-register {
     background: linear-gradient(
  to right,
 rgb(183 198 255 / 20%), rgb(230 0 255 / 10%));
    margin: 5% auto;
    padding: 20px 25px;
    border-radius: 8px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    left: 0%;
    border: none;
    backdrop-filter: blur(15px); /* Glass effect */
    animation: fadeIn 0.3s ease-in-out;
    position: relative;
}

.close-login {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-login:hover,
.close-login:focus {
    color: black;
    cursor: pointer;
}
.close-register {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-register:hover,
.close-register:focus {
    color: black;
    cursor: pointer;
}

.input-container {
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 36px;
    backdrop-filter: blur(10px);
}

.icon {
    position: absolute;
    padding: 12px;
    color: #6653ba;
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="number1"]:focus {
    outline: none;
}
input[type="email"],
input[type="text"],
input[type="number1"],
input[type="password"] {
     /* font-family: "Comfortaa";  */
    width: 100%;
    padding: 12px;
    background: white;
    border-radius: 36px !important;
    /* background-color: #f7f7f7;
    border: 1px solid #7461de91  ; */
    color: #7a7a7a ;
    transition: border 0.2s ease-in-out;
    /* border: none; */
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6653ba;
}
.lower_inputs {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.checkbox-container {
    gap: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-btn {
    background-color: #ffffff;
    color: #1F2546;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    width: 100%;
    font-family: Poppins,sans-serif;
    font-weight: 500;
    
}

.login-btn:hover {
    background:linear-gradient(90deg, #705BCB, #60FFD2);
    color:white
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.login_form_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}
h2 {
    padding: 5px 0 20px 0;
    text-align: left;
    font-size: 22px;
    font-weight: 600;
    color: #000000;
}
a {
    text-decoration: none;
}

.another_signup_options_container {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.or-text {
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
}
.login-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
}
.login-button span {
    font-weight: bold;
     /* font-family: "Comfortaa";  */
    font-size: 12px;
}
.error-msg {
    padding-left: 25px;
    position: absolute;
    text-align: start;
    width: 100%;
    left: 0;
    bottom: -8px;
    font-size: 11px;
    color: red;
    animation: fadeIn 0.1s linear;
}
.login-button {
    width: 50px;
    height: 50px;
    padding: 5px 10px;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-around;
    border: 1px solid #ddd;
    border-radius: 36px;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}
.login-button:hover {
    background-color: #f5f5f5;
}
.login-button i {
    margin-right: 10px;
    font-size: 20px;
}
.google-icon {
    color: #4285f4;
}
.apple-icon {
    color: #000;
}
@media (max-width: 768px) {
    .login-options {
        flex-direction: row;
    }
    .modal-content{
        right: 0;
    }
    .modal-content-register{
        right: 0;
    }
}

/* table history style here */

body {
    background: #f4f4f4;
}

.history_table_container {
    overflow-x: auto; /* Allows horizontal scrolling */
    margin: 10px;
    background: white;
    border-radius: 8px;
    max-width: 100%;
    width: 100%;
    margin: 1rem auto;
    margin-bottom: 6rem;
}

table {
    min-width: 100%; /* Ensures table does not squeeze below this width */
    border-collapse: collapse;
}

td {
    white-space: nowrap;
    text-align: left;
    font-size: 15px;
    padding: 8px 15px;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
}

th {
    font-size: 17px;
    padding: 15px;
    background-color: #f2f2f2;
    color: black;
    font-weight: bold;

    white-space: nowrap;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.row_image_container img {
    width: 30px;
    height: auto;
    cursor: pointer;
}

.fa-edit,
.fa-trash {
    color: #6855BD;
    cursor: pointer;
}

.fa-trash {
    color: #e53e3e;
}

.close-delete {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.delete_message {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: black;
}
.close-delete:hover,
.close-delete:focus {
    color: black;
    cursor: pointer;
}

.buttons_containerss {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.cancel-btn {
     /* font-family: "Comfortaa";  */
    background-color: transparent;
    color: black;
    border: 1px solid rgb(141, 135, 135);
    cursor: pointer;
    padding: 8px 10px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 5px;
    width: fit-content;
}

.cancel-btn:hover {
    background-color: #f8f8f8;
}
.delete-btn {
     /* font-family: "Comfortaa";  */
    background-color: #7361de;
    color: white;
    border: none;
    cursor: pointer;
    padding: 9px 10px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 5px;
    width: fit-content;
}

.delete-btn:hover {
    /* background-color: #139ba2; */
    background-color: red;
}
.qr_heading_text {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}
.close-qr-modal {
    color: #aaa;
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 28px;
    font-weight: bold;
}

.close-qr-modal:hover,
.close-qr-modal:focus {
    color: black;
    cursor: pointer;
}
/* .show_qr_modal_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
} */
.show_qr_modal_container img {
    height: 100%;
    width: 100%;
    margin-bottom: 1rem;
}
.modal-content-qr {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px 5px 0;
    border-radius: 8px;
    width: 90%;
    max-width: 320px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position:relative
}

/* user profile style container */
.profile_page_container {
     /* font-family: "Comfortaa";  */
    border-radius: 15px;
    margin-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile-container {
     /* font-family: "Comfortaa";  */
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 575px;
}
.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
}
.profile-picture-container {
    position: relative;
    width: 150px;
    margin: 0 auto 1rem;
}
.change-picture {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.input-group {
    margin-bottom: 1rem;
    position: relative;
}
.input-group input:focus {
    outline: none;
}
.input-group input {
    width: 100%;
    font-weight: 700;
     /* font-family: "Comfortaa";  */
    padding: 10px 10px 10px 35px;
    /* border: none; */
    background-color: #ececec;
    border-radius: 8px;
    height: 40px;
    font-size: 14px;
    box-sizing: border-box;
}
.password-fields .input-group input {
    padding: 10px 10px 10px 33px;
}
.input-group .input_first_icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}
.input-group .password_eye_icon {
    position: absolute;
    right: 10px;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}
.change-password-btn {
     /* font-family: "Comfortaa";  */
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #ececec;
    color: black;
    font-weight: 700;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
}
.password-fields {
    display: none;
}
.password-fields.show {
    display: block;
    margin-top: 14px;
}
.fa-eye-slash {
    margin-left: 2px;
}

/* user popover styles */
.profile_dropdown_content {
    position: absolute;
    top: 43px;
    right: 0rem;
    display: none;
    z-index: 2;
    padding: 0.5rem 0;
    flex-direction: column;
    background-color: #f8f8f8;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.profile_dropdown_content a {
    text-decoration: none;
    font-size: 13px;
    background-color: #f8f8f8;
    font-weight: 700;
    padding: 0.15rem 1.5rem;
    color: rgb(75, 71, 71);
    transition: all 0.3s ease-in;
}
.login_button_navbar {
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    background: linear-gradient(90deg, #8770f0 0%, #4b36ad 100%);
    color: white;
    border: none;
    cursor: pointer;
    padding: 0.3rem 1rem;
    border-radius: 8px;
}
.login_button_navbar:hover {
    text-decoration: none;
    color: white;
}
.profile_dropdown_content a:hover {
    color: black;
    font-weight: bold;
}
.close-forgot {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-forgot:hover,
.close-forgot:focus {
    color: black;
    cursor: pointer;
}
.close-reset {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-reset:hover,
.close-reset:focus {
    color: black;
    cursor: pointer;
}
.generate_qrcode {
    border-radius: 6px !important;
    width: 90%;
    margin: auto;
}
@media (min-width: 992px) and (max-width: 1300px) {
    .show_result_qr{
        max-width: 400px;
        width: 100%;
        position:fixed!important;
        top:8rem !important;
        z-index:0;
    }
}
@media (min-width: 1300px) and (max-width:1884px) {
    .show_result_qr{
        max-width: 400px;
        width: 100%;
        position:fixed!important;
        top:8rem !important;
        z-index:0;
        /* left: 78%; */
    }
}
@media (min-width: 1885px)  {
    .show_result_qr{
        max-width: 400px;
        width: 100%;
        position:fixed!important;
        top:8rem !important;
        z-index:0;
        left: 77%;
    }
}
@media (min-width:992px ){
 
    .buttons_container__{
        flex-direction: row;
    }
}
.tab_buttons:hover {
    background: #61c9c9 !important;
}
.tab_buttons:hover.tab_buttons a {
    color: white !important;
}
@media (max-width:800px ){
    .tab_buttons{
        max-width: 31%;
        width: 100%;
    }
}
@media (max-width:600px ){
    .tab_buttons{
        max-width: 48%;
        width: 100%;
    }
}

/* Location Tab Content zoom in, zoom out button */
.ol-zoom{
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff !important;
}
.ol-zoom-in:hover{
    background: #89e0bf !important;
}
.ol-zoom-in{
    height: 35px;
    min-width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    width: 30px;
    background: #ffffff !important;
    border: none;
}
.ol-zoom-out:hover{
    background: #89e0bf !important;
}
.ol-zoom-out{
    height: 35px;
    min-width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    width: 30px;
    background: #ffffff !important;
    border: none;
}

.ol-rotate-reset:hover{
    background: #89e0bf !important;
}
.ol-rotate-reset{
    height: 35px;
    min-width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    width: 30px;
    background: #ffffff !important;
    border: none;
}
/* .ol-rotate, .ol-attribution, .ol-compass{
    display: none !important;
} */

.tempus-dominus-widget{
    display: none !important;
}
         * SIZE AND PRECISION

.sticky-preview {
    position: sticky;
    top: 20px;  /* Adjust this value to control how far from the top it sticks */
    z-index: 1;
}

