* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

body {
    /* background: linear-gradient(130deg, rgba(155,250,9,1) 0%, rgba(30,174,152,0.9248074229691877) 70%, rgba(0,211,255,1) 100%); */
    margin-bottom: 60px;
    color:black;
    background: rgb(246,246,246);
    background: linear-gradient(90deg, rgba(246,246,246,1) 0%, rgba(186,242,187,1) 35%, rgba(206,249,140,1) 100%);
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.curved-header {
    border-top-left-radius: 20px;
    background-color: darkgreen;
    border-top-right-radius: 20px;
    padding: 4px;
    color: white;
}

.bg-orange {
    background-color: orangered;
}

.bg-purple {
    background-color: purple;
}

.card {
    margin: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 2px 2px 4px 2px #808080;
}

.shadowed {
    box-shadow: 2px 2px 4px 2px #808080;
}

.card:hover {
    opacity: 0.8;
}

.dateInput {
    /* For JavaScript only */
}

.centered-form {
    width: 50%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .centered-form {
        width: 90%;
    }
}

.rounded, .rounded-5 {
    border-radius: 5px;
}

.rounded-10 {
    border-radius: 10px;
}

.rounded-15 {
    border-radius: 15px;
}

.rounded-20 {
    border-radius: 20px;
}

.page-btn {
    width: 50px;
    flex-direction: column;
}

.user-menu {
    background-color: darkgreen;
    border-radius: 15px;
    padding: 2px;
}

.green-blue {
    background: rgb(124,200,8);
    background: linear-gradient(45deg, rgba(124,200,8,1) 0%, rgba(11,214,238,0.9248074229691877) 50%, rgba(254,255,0,1) 100%);
}

.navbar {
    /* background-color: #1eae98; */
    /* https://cssgradient.io/ */
    background: rgb(246,246,246);
    background: linear-gradient(90deg, rgba(246,246,246,1) 0%, rgba(186,242,187,1) 35%, rgba(206,249,140,1) 100%);
    z-index: 9999;
}

    /*
    For changing color of links when hovered.
  */
    .navbar ul li a:hover {
        background-color: white;    /*rgb(161,251,18);*/
        color: black;
        border-bottom: 2px solid black;
    }

    /*
  For background color of NAVBAR Popups.
  It should be same as .navbar background
*/
    .navbar ul ul {
        background-color:white; /*rgb(161,251,18);*/
        width: 200px;
    }

        /*
    For background color and width of Menu Links on hover.
*/
        .navbar ul ul a:hover {
            background-color: #067766bf;
            color: white;
            width: 200px;
        }

.current-trans {
    background: rgb(82,129,7);
    border-color: white !important;
    border-radius: 10px;
    border-width: 5px;
}

.current-trans-warning {
    background-color: #e909a6bf;
    border-color: white !important;
    border-radius: 10px;
    border-width: 5px;
}

.trans-figure {
    border-radius: 20px;
    background-color: black;
    padding: 1px;
    margin: 1px;
    width: 48px !important;
    text-align: center;
    display: inline-block;
}

.trans-figure-warning {
    border-radius: 20px;
    background-color: rgb(170, 7, 7);
    padding: 1px;
    margin: 1px;
    width: 48px !important;
    text-align: center;
    display: inline-block;
}




/* ============================================================= */
/* For Search button along with Input */
.custom-search {
    position: relative;
    width: 100%;
    margin-left: 0;
}

.custom-search-input {
    width: 100%;
    border: 1px solid rgb(10, 41, 242);
    /* border-radius: 100px; */
    padding: 10px 100px 10px 20px;
    line-height: 1;
    /* box-sizing: border-box; */
    outline: none;
    color: black;
}

.custom-search-button {
    position: absolute;
    right: 6px;
    top: 3px;
    bottom: 3px;
    border: 0;
    background: #f37006;
    color: #fff;
    outline: none;
    line-height: 1;
    margin: 0;
    padding: 0 10px;
    border-radius: 100px;
    z-index: 2;
}

.modal-w {
    width: 750px;
    margin: auto;
}

a.disabled {
    pointer-events: none;
    cursor: default;
}

.text-small {
    font-size:14px;
}









.count {
    background-color: black;
    text-align: center;
    width: 60px !important;
    border-radius: 100px;
    padding: 4px;
}
