html {
    position: relative;
    min-height: 100%;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    html {
        font-size: 0.9rem;
    }
}

body {
    margin-bottom: 60px;
    /*font-family: 'Times New Roman';*/
    color: #4f3f3f;
    background-color: #f8f9fa;
}

.btn {
    box-shadow: 0 4px 8px #4f3f3f;
    border-radius: 5px;
}

.btn-no-shadow {
    box-shadow: none;
    border-radius: 5px;
}

/*for logout button*/
.btn-link {
    box-shadow: none;
}

.btn:hover {
    transform: translateY(1px);
    box-shadow: 0 4px 8px #8a7c7c;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}


.btn-info, .btn-primary, btn-secondary, .btn-success, .btn-danger {
    color: white;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    display: block;
}

.image-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa; /* Change to desired color */
    mix-blend-mode: multiply;
    pointer-events: none;
}


.card {
    box-shadow: 0 4px 4px grey; /*Extreme shadow 
        [if u use this then uncomment below customCard shadow] 
        : 0 0 40px rgba(8,7,16,0.6);*/
    border-radius: 10px;
}

#customCard {
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#customCard:hover {
    transform: translateY(1px);
    font-weight: bolder;
    box-shadow: none;
}


.wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px, 1fr));
    grid-gap: 1rem;
    margin-bottom: 10px;
}

#horizontal {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow */
    max-height: 700px;
    overflow: auto;
    padding: 0px 0px 0px 0px;
}

#typewriting {
    text-align: center;
    color: #4386f1;
    __margin: 10px 0px 10px 0px;
    __padding: 5px 5px 5px 5px;
    font-family: 'Franklin Gothic';
    font-weight: bold;
    text-transform: uppercase;
}

#myAnchor {
    text-decoration: none;
    __color: #9a1f1f;
}

#customAnchor {
    text-decoration: none;
    color: black;
}

    #customAnchor:hover {
        color: lightseagreen !important;
    }


/*.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
    }*/

/* Hover Dropdown color */
/*.nav-link:hover {
    -webkit-text-fill-color: lightseagreen;*/
/*-webkit-text-fill-color: midnightblue;*/
/*}

.nav-link {
    font-family: Bahnschrift SemiBold;
}

@keyframes MenuTransform {
    0% {
        transform: scaleY(0);*/ /* Start with vertical scaling of 0 (hidden) */
/*}

    100% {
        transform: scaleY(1);*/ /* End with vertical scaling of 1 (original size) */
/*}
}

@media screen and (min-width: 831px) {
    ul.navbar-nav li.dropdown:hover > ul.dropdown-menu {
        display: block;
        animation: MenuTransform 0.3s;
        background-color: #e4cdea;
        border-radius: 10px;
    }

    ul.navbar-nav li.dropdown-submenu:hover > ul.dropdown-menu {
        display: block;
        animation: MenuTransform 0.3s;
        background-color: #e4cdea;
        border-radius: 10px;
    }
}

@media screen and (max-width: 830px) {
    ul.navbar-nav li.dropdown:hover > ul.dropdown-menu {
        display: block;
        animation: MenuTransform 0.3s;
        background-color: #e4cdea;
        border-radius: 10px;
        width: 50%;
    }

    ul.navbar-nav li.dropdown-submenu:hover > ul.dropdown-menu {
        display: block;
        animation: MenuTransform 0.3s;
        background-color: #e4cdea;
        border-radius: 10px;
        width: 50%;
    }
}*/

/* Report Menu */
.reportmenu-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reportmenu-item {
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.reportmenu-item.selected {
    __background-color: #cce5ff; /* Change the background color as desired */
    background-color: darkblue;
    color: white;
}


#customRow {
    margin-bottom: 10px;
}

.fa-trash:hover {
    color: red;
}

.fa-edit:hover,
.fa-info:hover,
.fa-chart-line:hover {
    color: #b64ae1;
}



.flex-button {
    cursor: pointer;
    display: inline-flex;
    flex-direction: row;
    gap: 10px;
    font-size: 1rem;
}

.flex-button.right {
    float: right;
}

.flex-button.left {
    float: left;
}

#menuTopIcons{
    font-size: 1.2rem;
}