body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: black; /* Set background color to black */
    color: white; /* Set text color to white for readability */
}

.container {
    display: grid;
    grid-template-columns: 200px 1fr;
    height: 100vh;
}

.left-column {
    background-color: black;
    padding: 10px;
}

.button {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
}

.button.active {
    background-color: #333;
    border-left: 5px solid #00b600;
}

.right-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    transition: all 0.5s ease;
}

.grid-item {
    position: relative;
    border: 1px solid #ccc;
    padding: 2px;
    font-size: 18px;
    background-color: black; /* Set grid background to black */
}

.iframe-container {
    width: 100%;
    height: 100%;
}

.overlay-text {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.2);
    color: rgb(0, 200, 0);
    padding: 5px;
    z-index: 10;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
}

.hidden {
    display: none;
}

.full-screen {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}

.patient-name {
    font-size: 0.4em; /* Smaller font size */
    color: #666; /* Grey color for distinction */
    display: block; /* Ensure it stays on a new line */
}
