html {
    margin: 0 auto;
    padding: 0;
    /* overflow: hidden; */
}
@font-face {
    font-family: 'MyFont';
    src: url('/fonts/font.woff2') format('woff2'),
         url('/fonts/font.woff2') format('woff');
}

@media only screen and (max-width: 768px) {
    body {
        background-size: cover !important;
    }

    .main {
        max-width: 100% !important;
        width: auto !important;
        padding: 10px !important;
    }

    .logo-design {
        width: 150px !important;
        padding: 5px !important;
    }

    .select-container {
        width: 300px !important;
    }

    h1 {
        font-size: 30px !important;
    }
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    font-family: 'MyFont', Arial, sans-serif;
    background-color: #03080f;
    padding: 10px;
    margin: 0;
}



.main {
    max-width: 900px;
    width: 100%;
    background-color: rgb(255,255,255);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 40px rgb(25, 154, 252);
    overflow: hidden;
}
.heading img{
    display: inline-block;
    border-radius: 5px;
    background-color: #40ac4a;
    width: 200px;
    padding: 10px;
    box-shadow: 10px 10px #007fbf;
}

h2 {
    color: #043e6d;

}

h3 {
    color: #043e6d;
    margin-top: 30px;
}

h4 {
    color: #043e6d;
    margin-top: 30px;
}

p {
    color: #043e6d;
    margin: 0;
}

a {
    text-decoration: none;
    display: inline-block;
    background: rgb(0,116,248);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 0px;
    text-decoration: none;
    max-width: 200px;
    width: 100%;
    margin-top: 10px;
    font-size: 24px;
}

a:hover {
    text-decoration: underline;
    box-shadow: 0 5px 15px rgba(0, 116, 248, 2.0);
}

.terms-link {
    background: none;
    color: inherit;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
    width: auto;
}

.select select {
    appearance: none;
    max-width: 600px;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background: #F1F1F1 url('/css/down_arrow.png') no-repeat right 10px top 50%;
    background-size: 14px 14px;
    border: none;
    color: #333333;
    font-family: 'MyFont', Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.radio {
    padding: 20px;
}

.text-box {
    display: inline;
    appearance: none;
}

#search_box {
    max-width: 100%;
    width: 200px;
}

.inline-label {
    display: inline-block;
}

.inline-input {
    display: inline-block;
    margin-left: 10px;
}

.overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1000; 
    justify-content: center;
    align-items: center;
}

.overlay-content {
    text-align: center;
    color: white;
}

.spinner {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

input {
    max-width: 100px;;
    padding: 10px;
    border-radius: 5px;
    background: #F1F1F1;
    border: none;
    color: #333333;
    font-family: 'MyFont', Arial, sans-serif;
}

.btn-split {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

.content {
    text-align: left;
}

.content .heading {
    text-align: center;
}

/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* 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 {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-top: -80px;
    cursor: pointer;
}