html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.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;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

body.modal-open {
    overflow: hidden;
}

a {
    text-decoration: none;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 60px;
    line-height: 60px; /* Vertically center the text there */
    background-color: #f5f5f5;
}

.primary-bg-color {
    background-color: #2c3e50;
}
.blue-bg-color {
    background-color: #005689;
}
.orange-bg-color {
    background-color: #ff6600;
}

.warning-text {
    color: coral;
}

.bold {
    font-weight: bold;
}

.smaller-text {
    font-size: 0.8em;
}


.smaller-button {
    --bs-btn-padding-y: .25rem;
    --bs-btn-padding-x: .5rem;
    --bs-btn-font-size: .75rem;
}

.nowrap {
    white-space: nowrap;
}

.hover-item {
    cursor: pointer;
}

.anchor-color {
    color: rgba(var(--bs-link-color-rgb));
}

.anchor-border {
    border: 3px solid; /* Add border property */
    border-color: rgba(var(--bs-link-color-rgb));
}


#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11000;
}

    #overlay img {
        /* Add necessary styles to center the image */
        position: relative;
    }

.profile_image_150 {
    width: 150px;
    border-radius: 50%;
}

#round-button-container {
    position: fixed;
    bottom: 0px;
    right: 20px;
    z-index: 99;
}

.round-button {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /*background-color: #ff6600*/;
    color: #ffffff;
    text-align: center;
    line-height: 50px;
    font-size: 26px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.4);
    transform: perspective(400px) rotateX(15deg);
    opacity: 0.7;
}

.nav-round-button {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #005689;
    color: #ffffff;
    text-align: center;
    line-height: 30px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.4);
    transform: perspective(400px) rotateX(15deg);
    opacity: 0.7;
}

.simple-text {
    white-space: pre-line;
}

.notepad {
    position: relative;
    background-color: #ffffe0;
    /*padding: 10px;*/
    border-radius: 6px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
}


    .notepad::before {
        content: '';
        position: absolute;
        top: 16px; /* Adjust the position to start lines inside the textarea */
        left: 15px; /* Adjust the position to start lines inside the textarea */
        right: 10px; /* Adjust the position to end lines inside the textarea */
        bottom: 15px; /* Adjust the position to end lines inside the textarea */
        background-image: linear-gradient(rgba(0, 0, 0, 0.2) 1px, transparent 1px);
        background-size: 10px 24px;
        pointer-events: none;
    }

.notepad-textarea {
    width: 100%;
    resize: none;
    border: none;
    background-color: transparent;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    padding: 5px; /* Add some padding to keep text inside the lines */
    overflow: hidden; /*Prevents scrollbars*/
    outline: none; /* Remove the default focus outline */
    border: 1px solid #ccc; /* Add a border to the textarea */
    outline: none; /* Remove the default focus outline */
}

    .notepad-textarea:focus {
        /* Customize the focus border color */
        border-color: #3498db; /* Change the color to your preferred color */
        border-width: 3px;
        box-shadow: 0 0 5px #6c757d; /* Optional: Add a box shadow for better visual effect */
        padding-top: 1px;
    }


.different-dates {
    color: red;
}

.notification-badges {
    font-size: 12px;
    font-weight: bold;
    position: relative;
    left: -15px;
    top: 5px;
    color: red;
}

.notification-badges-left {
    font-size: 12px;
    font-weight: bold;
    position: relative;
    left: 0px;
    top: 5px;
    color: red;
}

.notification-visitreasons-count {
    font-size: 10px;
    font-weight: bold;
    position: relative;
    color: red;
    top: 5px;
}

.categories-lines {
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.sticky-note {
    position: relative;
    /*padding: 10px;*/
    border-radius: 6px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
}

    .sticky-note::before {
        content: '';
        position: absolute;
        top: 16px; /* Adjust the position to start lines inside the textarea */
        left: 15px; /* Adjust the position to start lines inside the textarea */
        right: 10px; /* Adjust the position to end lines inside the textarea */
        bottom: 15px; /* Adjust the position to end lines inside the textarea */
        background-image: linear-gradient(rgba(0, 0, 0, 0.2) 1px, transparent 1px);
        background-size: 10px 24px;
        pointer-events: none;
    }

.sticky-note-textarea {
    width: 100%;
    resize: none;
    border: none;
    background-color: transparent;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    padding: 5px; /* Add some padding to keep text inside the lines */
    overflow: hidden; /*Prevents scrollbars*/
    outline: none; /* Remove the default focus outline */
    border: 1px solid #ccc; /* Add a border to the textarea */
    outline: none; /* Remove the default focus outline */
}

.right-container {
    display: flex;
    justify-content: flex-end;
}

.disabled-icon {
    color: #e0e0e0;
}


/* Modal Menu */
.menuModalOverlay, .menuModal {
    display: none;
    visibility: hidden;
}

.menuModalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 100;
}

    .menuModalOverlay.show, .menuModal.show {
        display: block;
        visibility: visible;
    }

.menuModal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 260px;
    height: 380px;
    transform: translate(-50%, -50%);
    /* background-color: #fefefe; */
    background-color: #2c3e50;
    color: white;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 101;
}

.menuModalCloseIcon {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}
