﻿
:root {
    /*Consolas*/
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --text-color: white;
    --text-shadow-main: 0 1px 2px rgba(0, 0, 0, 0.2);
    --text-shadow-host: 0 1px 2px rgba(0, 0, 0, 0.15);
    --text-size: 2.8em;
    --text-size-sm: 2em;
    --color-primary: navy;
    --color-host: #1a237e;
    --color-host-hover: #f1191a;
    --image-height: 50px;
    --hover-scale: 1.85;
    --gap-mobile: 8px;
}
.main-content{
    width:75%;
    height:640px;
    margin:auto;
}
html, body {
    font-family: var( --font-main);
    margin: 5px !important;
    padding: 0;
    overflow: hidden; /* optional while modal is open */
}

h1 {
    padding: 0 !important;
    font-weight: bold;
    margin: 0 !important;
    font-size: 10vw;
    text-align: center;
}

h3 {
    padding: 80px 30px 0 30px;
    font-size: 20px;
    font-style: italic;
    text-align: center;
}

h4 {
    font-size: 1.5vw;
    font-weight: normal;
    text-align: left;
    padding: 20px;
}

h5 {
    font-size: 22px;
    font-weight: normal;
    text-align: center;
    padding: 20px;
}


/*Core Nav Start*/
.core-nav-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: white;
    text-align: center;
    border-bottom: 2px solid #64b5f6;
}

.core-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    font-family: var(--font-main);
    color: var(--text-color);
    flex-wrap: wrap;
}

.core-header-text {
    font-size: var(--text-size);
    font-weight: bold;
    white-space: nowrap;
    color: var(--color-primary);
    text-shadow: var(--text-shadow-main);
}

.core-header-host {
    font-size: var(--text-size);
    font-weight: bold;
    white-space: nowrap;
    color: var(--color-host);
    text-shadow: var(--text-shadow-host);
    cursor: pointer;
}

    .core-header-host:hover {
        color: var(--color-host-hover);
    }

.core-header-img {
    height: var(--image-height);
    transition: transform 0.2s ease;
    margin-left: 15px;
}

    .core-header-img:hover {
        transform: scale(var(--hover-scale));
    }

@media (max-width: 600px) {
    .core-header {
        flex-direction: column;
        gap: var(--gap-mobile);
    }

    .core-header-text,
    .core-header-host {
        font-size: var(--text-size-sm);
    }
}


#cabinetImg{
    margin-top:50px;
}
.ui-widget.ui-widget-content{
    margin-left: 3px;
    padding:0!important;
}
.container {
    padding-top: 0;
    margin-top: 0;
    width: 100% !important;
    margin: auto;
}
.link {
    font-size: 20px;
}
.link:hover {
    text-decoration: underline;
    cursor: pointer;
}
.emoji {
    font-size: 1.5em;
}
.pointer {
    cursor: pointer;
}

.register-block {
    margin-top: 50px;
    width: 60%;
    margin: auto;
}
.innerPanel {
    min-height:450px !important;
}
.insidePanel {
    height:610px !important;
    width:100%;
}
.dot {
    position: relative;
    top: -2px;
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: red;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
    border:1px solid red;
}

.clr-turqoise{
    background-color: turquoise;
}
.small {
    width: 16px;
    height: 16px;
}

.no-select {
    user-select: none !important;
}

.ui-tabs .ui-tabs-panel {
    height: calc(100vh - 470px);
    overflow-y: auto;
    user-select:none;
}
.OrgHeader {
    color: navy;
    position: relative;
    top: -20px;
    font-size: 2.2vw;
    font-weight: bold;
    text-shadow: 2px 4px 3px silver;
}
.custom-list {
    margin-top: 20px;
    height: 400px;
    border: 1px solid silver;
    border-radius: 5px;
    padding: 10px;
    overflow-y: auto;
}
.no-select {
    user-select: none;
}
.listItem {
    font-family: Consolas, "Menlo", "DejaVu Sans Mono", "Lucida Console", "Courier New", monospace;
    padding-left: 10px;
}
    .listItem:hover {
        background-color: #0d6efd;
        color: #fff;
        cursor: pointer;
    }
/* container for each note */
.note {
    width: 266px;
    padding: 4px;
    background-color: #e9e9e9;
    border: 1px solid gray;
    border-radius: 5px;
    margin: 7px;
    display:block;
    flex-direction: column;
    box-sizing: border-box;
}

    .note textarea {
        width: 100%;
        box-sizing: border-box;
        resize: vertical;
        padding: 4px;
    }

.bg-subtle{
    background-color:lightgreen !important;
}



.selected {
    background-color: #0d6efd;
    color: #fff;
    cursor: pointer;
}
.ui-widget-overlay {
    background: rgba(0, 0, 0, 1) !important; /* darker overlay */
}
.pnl {
    height: calc(100vh - 410px) !important;
}
.fSet {
    border: 3px solid black;
    border-radius: 5px;
    padding: 10px;
    margin-top: 5px;
    height: 190px;
    overflow-y: auto;
}


.custom-modal-overlay {
    position: fixed;
    inset: 0; /* top:0; left:0; bottom:0; right:0 */
    margin: 0;
    padding: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9999;
    display: block; /* important! NOT flex */
}

.custom-modal {
    background: #fff;
    width: 500px;
    max-width: 90%;
    border: 4px solid #0d6efd;
    border-radius: 10px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
}

    /* FULLSCREEN MODE */
    .custom-modal.fullscreen {
        width: 100vw;
        height: 100vh;
        max-width: none;
        border-radius: 0;
        border-width: 0;
        left: 0 !important;
        top: 0 !important;
    }
    .custom-modal,
    .custom-modal * {
        box-sizing: border-box;
    }
.custom-modal-header {
    padding: 14px 18px;
    background: #0d6efd;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.custom-modal-close {
    background: none;
    border: none;
    color: black !important;
    font-size: 20px;
    cursor: pointer;
}

.custom-modal-body {
    flex: 1; /* take all remaining space below header */
    display: flex;
    flex-direction: column;
    padding: 10px !important;
}
.custom-modal-btn {
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

.custom-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}
.custom-modal-body textarea {
    flex: 1; /* fill available height */
    width: 100%;
    box-sizing: border-box;
    resize: none; /* optional: prevent manual resize if you want */
}

.custom-modal-overlay {
    opacity: 0;
    transition: opacity 0.25s ease;
}

    .custom-modal-overlay.show {
        opacity: 1;
    }

.custom-modal {
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.25s ease;
}

    .custom-modal.show {
        transform: scale(1);
        opacity: 1;
    }
.NoteTemplate{
    width:228px;
    background-color:white;
    border: 2px solid silver;
    padding:3px;
    border-radius:5px;
}
    .NoteTemplate input[type="checkbox"] {
        position: relative;
        top: 10px;
        left: -5px;
    }
    .NoteTemplate input[type="text"] {
        background-color: lightblue;
    }
.templateContainer {
    --background-color: rgb(233, 233, 233);
    height: 330px;


    overflow-y: auto;
}
.tabColor {
    
    background-color:rgb(0, 127, 255);
}
.mr-2{
    margin-right:12px;
}
.summaryPractices {
    height:505px;
    width: 100%;
     margin:auto;
    overflow-y:auto;
}
.officeName,.userName {
    font-size: 22px;
    background-color: rgb(233, 233, 233);
    color: black;
}
.individualPractice {
    padding: 0 2px 2px 2px;
    border: 1px solid silver;
    border-radius: 5px;
}
.sticky-search {
    position: sticky;
    top: 0;
    background: white; /* important so content doesn't show through */
    z-index: 10;
    padding: 5px 0;
}