.carol {
    color: coral;
}

.color-ais {
    color: #B2D233;
}

.font-kanit {
    font-family: kanit;
}

.font-gray {
    color: rgb(177, 177, 177);
}

.text-center {
    text-align: center;
}

.text-dark {
    color: #000;
}

.block-center {
    margin: auto;
    width: 50%;
    border: 3px solid green;
    padding: 10px;
}

.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropbtn:hover,
.dropbtn:focus {
    background-color: #3e8e41;
}

#myInput {
    box-sizing: border-box;
    background-image: url('searchicon.png');
    background-position: 14px 12px;
    background-repeat: no-repeat;
    font-size: 16px;
    padding: 14px 20px 12px 45px;
    border: none;
    border-bottom: 1px solid #ddd;
}

#myInput:focus {
    outline: 3px solid #ddd;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f6f6f6;
    min-width: 230px;
    overflow: auto;
    border: 1px solid #ddd;
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}



.show {
    display: block;
}

/* Dark Mode Styles */
.body {
    background-color: #333;
    /* Dark background color */
    color: #ff0000;
    /* Light text color */
}


.modal-content {
    background-color: #222;
    /* Dark modal background color */
    color: #fff;
    /* Light modal text color */
}



body {
    scrollbar-face-color: #d9d9d9;
    scrollbar-track-color: transparent;
    font: 14px/16px Roboto, sans-serif;
    color: #666;
    background-color: #F0F3F4
}

body,
html {
    min-height: 100%;
    min-width: 100%;
}

body.blur-theme {
    position: fixed;
    background: url('./blur-bg.jpg') center center no-repeat;
    background-size: cover;
}

.auth-block p,
.auth-input input,
.auth-link,
.auth-sep,
.btn-xm {
    font-size: 16px
}

.auth-block {
    width: 375px;
    height: 550px;
    margin: 0 auto;
    border-radius: 5px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    padding: 32px
}

.auth-block h1 {
    font-weight: 300;
    margin-bottom: 28px;
    text-align: center
}

.auth-block a {
    text-decoration: none;
    outline: 0;
    transition: all .2s ease;
    color: #209e91
}

.auth-block a:hover {
    color: #1b867b
}

.auth-block .control-label {
    padding-top: 11px;
    color: #fff
}

.auth-block .form-group {
    margin-bottom: 12px
}

/* Add this to your CSS */
.g-recaptcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 15px 0;
}

.g-recaptcha {
    transform: scale(0.9);
    transform-origin: center;
}

@media screen and (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}