:root {
    --bg-color1: #e4f0f9;
    --bg-color2: #87BBD4;
    --bg-color3: #F4A261;
    --text1: #333333;
    --text-light: #fffffe;

    --primary-pastel: #E8F4FD;
    --secondary-pastel: #F0E6FF;
    --success-pastel: #E8F5E8;
    --warning-pastel: #FFF4E6;
    --danger-pastel: #FFE6E6;
    --info-pastel: #E6F7FF;
    --light-pastel: #F8F9FA;
    --dark-pastel: #6C757D;
    --accent-pink: #FFB6C1;
    --accent-blue: #87CEEB;
    --accent-green: #98D8C8;
    --accent-purple: #DDA0DD;
    --icon-gray: #4A4A4A;

}

.btn {
    padding: .5rem 1rem !important;
}

.pointer {
    cursor: pointer;
}

html,
body {
    background: var(--bg-color1);
    height: 100%;
    color: var(--text1);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1em;
    padding: 0px;
    font-size: 0.9em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--bg-color1);

}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--bg-color2);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--text1);
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                     supported by Chrome, Edge, Opera and Firefox */
}

span {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                     supported by Chrome, Edge, Opera and Firefox */
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=search],
input[type=email],
input[type=url],
select,
textarea {
    background: var(--bg-color2) !important;
    border-color: var(--bg-color2) !important;
    border-radius: 8px !important;
    color: white !important;
    height: 30px !important;

}