﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

.card-w {
    position: relative;
    display: block;
    margin: 5px;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    padding: 0px;
    flex: 1 1 auto;
}

.medtex:hover,
.medtex:focus,
.medtex:active {
    color: whitesmoke;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}


/* FP custom CSS*/
h1 {
    color: #fff;
    padding-bottom: 2rem;
    font-weight: bold;
}

a {
    color: #333;
}

    a:hover {
        color: #E8D426;
        text-decoration: none;
    }

.form-control:focus {
    color: #000;
    background-color: #fff;
    border: 2px solid #247c74;
    outline: 0;
    box-shadow: none;
}


.btn-emar {
    color: #fff;
    /*font-weight: bold;*/
    background-color: #34aca4;
    border-color: #247c74;
}

    .btn-emar:hover {
        color: #fff;
        background-color: #247c74 !important;
        border-color: #247c74 !important;
    }

/*.btn-emar {
    color: #fff;
    background-color: #66AFA1;*/ /* Lightened shade of 008477 */
/*border-color: #4D8D81;*/ /* Darker for border */
/*}

    .btn-emar:hover {
        color: #fff;
        background-color: #4D8D81 !important;*/ /* Darker for hover */
/*border-color: #4D8D81 !important;
    }*/

.medsAdminTextBox {
    padding: 4px;
    margin: 4px;
    height: 2rem;
}

th, td {
    padding-left: 15px;
    padding-right: 15px;
}

#calendar {
    transition: 0.5s;
}

.swal2-container {
    z-index: 99999 !important;
}

/*tooltip css*/
.customTooltip {
    position: relative;
    display: inline-block;
}

    .customTooltip .tooltiptext {
        visibility: hidden;
        width: max-content;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        margin-left: -130px;
        opacity: 0;
        transition: opacity 0.3s;
    }

        .customTooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }

    .customTooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f0f0f0;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    text-align: center;
    display: none; /* Initially hide the popup */
}

    .cookie-popup.show {
        display: block; /* Show the popup when the class is added */
    }

.cookie-content {
    margin-bottom: 10px;
}

.layoutLogo {
    max-height: 50px;
    width: auto;
    height: auto;
}


.hover-div {
    background-color: White; /* Set the initial background color */
    transition: background-color 0.3s ease; /* Add a smooth transition effect */
    cursor: pointer;
}

    .hover-div:hover {
        background-color: #60cdcf;
        ; /* Set the background color on hover */
    }
