/* Import Google Fonts: Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* #ff2323 */

/* Apply Poppins to all elements */
* {
    font-family: 'Poppins', sans-serif;
}

html {
    min-height: 100vh;
    min-height: 100vh;
    margin: 0;
}

body {
    padding-bottom: 10vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sidebar {
    height: 100%;
    min-height: 100vh;
    border-right: 1px solid #dee2e6;
    transition: transform 0.3s ease-in-out;
}

.sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    color: inherit;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.sidebar a:hover,
.sidebar a.active {
    background-color: rgba(173, 232, 188, 1);
    color: #3a5a40;
}

.sidebar-toggler {
    display: none;
}

.tiny-text {
    font-size: 11px !important;
}

.top-10 {
    margin-top: 10px;
}

.top-12 {
    margin-top: 12px;
}

.top-30 {
    margin-top: 30px;
}

.mtop {
    margin-top: 0px;
}

.pointer {
    cursor: pointer;
}

.margin-0 {
    margin: 0px;
}

.alert-c {
    position: fixed !important;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    z-index: 9999;
}

.round-12 {
    border-radius: 12px;
}

.tier-proggress-box {
    height: 18px;
    width: 100%;
    border: 1px solid #ff2323;
    border-radius: 100px;
}

.tier-proggress-bar {
    height: 100%;
    background-color: #ff2323;
    text-align: center;
    font-size: 11px;
    color: white;
    align-items: center;
}

.sub-menu-box {
    padding: 8px;
    margin-top: 12px;
    border-radius: 8px;
    cursor: pointer;
}

.sub-menu-box.active {
    background-color: rgba(173, 232, 188, 0.5);
    color: #3a5a40 !important;
}

.submenu-content {
    display: none;
}

.password-input i {
    cursor: pointer;
}

.admin-menu {
    display: none !important;
}

#addDataForm td input {
    min-width: 50px;
}

.click-copy {
    padding: 8px;
    cursor: pointer;
}

.rounded {
    border-radius: 1rem !important;
}

.select-bet:hover {
    color: #212529 !important;
    background-color: unset !important;
}

.btn-danger.selected {
    color: #fff !important;
    background-color: #dc3545 !important;
}

.btn-secondary.selected {
    color: #fff !important;
    background-color: #6c757d !important;
}

.cursor-pointer {
    cursor: pointer;
}

.bg-dark {
    background-color: #1c1c27 !important;
}

#feature .card {
    background-color: #1c1c27 !important;
    color: #ffffff !important;
}

.shadow {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6),
        0 0 20px rgba(255, 35, 35, 0.4),
        0 0 30px rgba(255, 35, 35, 0.2) !important;
}

.shadow-sm {
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.5),
        0 0 10px rgba(255, 35, 35, 0.3) !important;
}

.form-group,
label {
    color: inherit !important;
}

.form-control {
    background-color: inherit !important;
    color: inherit !important;
}

.bg-dark .form-control::placeholder {
    color: rgba(red, green, blue, 0.5) !important;
}

.input-group-text {
    color: inherit !important;
    background-color: inherit !important;
}

/* .text-muted {
    color: #e0e0e0 !important;
} */

.card {
    background-color: inherit !important;
    color: inherit !important;
}

.bg-dark .form-control option {
    background-color: #212529;
    color: #fff;
}

.bg-dark .btn-close {
    color: #fff !important;
}

.bg-inherit {
    background: inherit !important;
}

@media (max-width: 768px) {
    .mtop {
        margin-top: 12px;
    }

    .sidebar {
        position: absolute;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        z-index: 1030;
        width: 250px;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    }

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

    .sidebar-toggler {
        display: inline-block;
        margin: 1rem;
    }
}