/* ========================================
   OLIM Custom Styles - Tailwind Complements
   Only styles that can't be expressed in Tailwind
   ======================================== */

/* Legacy utility classes still used in templates */
.hidden {
    display: none;
}

.cursor {
    cursor: pointer;
}

/* Component-specific styles */
.highlight {
    display: inline;
    background-color: rgb(255, 172, 47);
    color: rgb(54, 83, 20);
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 500;
}

.patient-body {
    padding: 0px;
    height: 400px;
    overflow-y: scroll;
    overflow-x: clip;
}

.patient-header {
    font-size: 23px;
    border-bottom: solid 1px;
}

.labels-menu {
    width: 300px;
    height: 80%;
    overflow-y: auto;
    overflow-x: clip;
}

.labels-text-icon {
    font-size: 20px;
    margin-left: 5px;
    margin-right: 4px;
    margin-top: -3px;
}

.label-group {
    position: relative;
    margin: 15px 0;
}

.remove-label {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 36px;
    width: 36px;
    padding: 0;
}

.radio-group {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
}

.radio-group p {
    margin: 5px 0;
}

/* Toast positioning override */
#toast-container {
    top: auto !important;
    right: auto !important;
    bottom: 10%;
    left: 7%;
}