@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* /Pages/Index.razor.rz.scp.css */
.intro-overlay[b-y5mdjao79s] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    z-index: 9999; /* Ensure the overlay appears on top of other elements */
}

.intro-container[b-y5mdjao79s] {
    position: fixed;
    top: 49px;
    right: 78px;
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 9999;
    width: 30%;
}

.intro-message[b-y5mdjao79s] {
    font-size: 14px; /* Adjust the font size as needed */
    margin-bottom: 10px; /* Add spacing between the message and the button */
    display: inline-block;
}

.arrow[b-y5mdjao79s] {
    position: absolute;
    top: -13px;
    right: -11px;
    width: 29px;
    height: 29px;
    background-color: #fff;
    transform: rotate(225deg);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    clip-path: polygon(100% 0, 100% 50%, 50% 100%, 0 50%, 0 0);
}


.intro-button[b-y5mdjao79s] {
    /* Add styles for the introduction button as needed */
}
/* Style for the div containing the invitation message and link */
.invitation-container[b-y5mdjao79s] {
    text-align: center;
    background-color: #f2f2f2;
    padding: 20px;
    position: fixed;
    bottom: 50px;
    left: 0;
    width: 100%;
}

/* Style for the invitation message */
.invitation-message[b-y5mdjao79s] {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Style for the invitation link */
.invitation-link[b-y5mdjao79s] {
    font-size: 20px;
    text-decoration: underline;
    color: #007bff; /* Change the color to your preference */
}

/* /Pages/MyPages/AddExam.razor.rz.scp.css */
.measures-notes[b-dh2rvcpvwx] {
    position: absolute;
    bottom: 90px;
    background-color:lightblue;
    display:none;
    border-radius:10px;
    padding-right:10px;
}

#MyMain[b-dh2rvcpvwx] {
    display: inline-flex;
    width: 95vw;
    background-color: lightgray;
    justify-content: space-between;
    position: relative;
}

    #MyMain:hover .siren-icon[b-dh2rvcpvwx] {
        display:flex;
        opacity: 80%;
    }

    #MyMain:hover  .measures-notes[b-dh2rvcpvwx] {
        display: flex;
        color: blue;
    }

.add-exam-main2[b-dh2rvcpvwx] {
    width: 100vw;
}

.wththc-numbers[b-dh2rvcpvwx] {
    width: 10%;
    display: inline-flex;
    flex-direction: column;
}

    .wththc-numbers input[b-dh2rvcpvwx] {
        width: 100%;
    }

    .wththc-numbers .red-alarm[b-dh2rvcpvwx] {
        background-color: red;
    }

.exam-boxes[b-dh2rvcpvwx] {
    width: 85%;
    display: inline-flex;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 10px;
}

    .exam-boxes textarea[b-dh2rvcpvwx] {
        width: 24%;
    }

.ok-btn-div[b-dh2rvcpvwx] {
    width: 5%;
    display: flex;
    align-items: center;
    margin: auto;
    min-width: fit-content;
}

.accept-btn[b-dh2rvcpvwx] {
    aspect-ratio: 1 / 1;
    width: 100%;
    border-radius: 50%;
    border: solid;
    background-color: blue;
    color: white;
}

.siren-icon[b-dh2rvcpvwx] {
    display:none;
    animation: flip-b-dh2rvcpvwx 2s infinite;
    width: 10vw;
    POSITION: absolute;
    right: 13%;
    bottom: 100%;
    opacity: 0%;
}

@keyframes flip-b-dh2rvcpvwx {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }

}
@media (max-width: 676px) {
    .measures-notes[b-dh2rvcpvwx] {
        bottom: 120px;
        
    }
    #MyMain[b-dh2rvcpvwx] {
        display: flex;
        flex-direction:column;
    }
    .wththc-numbers[b-dh2rvcpvwx] {
        width: 100%;
        flex-direction: row;
    }
    .exam-boxes[b-dh2rvcpvwx] {
        width: 100%;
        
    }

}
/* /Pages/MyPages/AddLab.razor.rz.scp.css */
/* Main Container */
main[b-3p976e80ab] {
    display: flex;
    position: relative;
    align-items: stretch;
    flex-direction: row;
    height: 100vh;
/*    max-height: 100vh;*/
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8edf2 100%);
    overflow: hidden;
}

/* Controls Container on the left */
.controls-container[b-3p976e80ab] {
    flex-shrink: 0;
    width: 380px;
    min-width: 350px;
    max-width: 450px;
    padding: 1rem;
    background: #ffffff;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.08);
    z-index: 10;
    overflow-y: auto;
    overflow-x: hidden;

}

    /* Scrollbar styling */
    .controls-container[b-3p976e80ab]::-webkit-scrollbar {
        width: 6px;
    }

    .controls-container[b-3p976e80ab]::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .controls-container[b-3p976e80ab]::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 3px;
    }

        .controls-container[b-3p976e80ab]::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }

/* Loading Modal */
.wait-Dialouge[b-3p976e80ab] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.loader[b-3p976e80ab] {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #4a90e2;
    border-radius: 50%;
    animation: spin-b-3p976e80ab 0.8s linear infinite;
}

@keyframes spin-b-3p976e80ab {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Lab Type Section */
.lab-type[b-3p976e80ab] {
    direction: rtl;
    width: 100%;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8ecf1;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    transition: all 0.3s ease;
}

    .lab-type:hover[b-3p976e80ab] {
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        transform: translateY(-1px);
    }

    .lab-type label[b-3p976e80ab] {
        font-size: 1rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0;
        text-align: right;
        letter-spacing: 0.2px;
    }

    .lab-type input[b-3p976e80ab] {
        padding: 0.65rem 1rem;
        font-size: 0.95rem;
        border: 2px solid #e0e6ed;
        border-radius: 8px;
        transition: all 0.3s ease;
        background: #ffffff;
        color: #2c3e50;
        margin: 0;
        font-weight: 500;
    }

        .lab-type input:focus[b-3p976e80ab] {
            outline: none;
            border-color: #4a90e2;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
            transform: translateY(-1px);
        }

    .lab-type button[b-3p976e80ab] {
        padding: 0.65rem 1.5rem;
        font-size: 0.95rem;
        font-weight: 700;
        color: white;
        background: linear-gradient(135deg, #667eea 0%, #4a90e2 100%);
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(74, 144, 226, 0.3);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

        .lab-type button:hover[b-3p976e80ab] {
            transform: translateY(-2px);
            box-shadow: 0 5px 14px rgba(74, 144, 226, 0.4);
            background: linear-gradient(135deg, #5a6fd8 0%, #3d7ec4 100%);
        }

        .lab-type button:active[b-3p976e80ab] {
            transform: translateY(0);
        }

/* Lab Quality Section */
.lab-quality[b-3p976e80ab] {
    width: 100%;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8ecf1;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    transition: all 0.3s ease;
}

    .lab-quality:hover[b-3p976e80ab] {
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        transform: translateY(-1px);
    }

    .lab-quality label[b-3p976e80ab] {
        font-size: 0.95rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0;
        letter-spacing: 0.2px;
    }

    .lab-quality input[type="range"][b-3p976e80ab] {
/*        width: 100%;*/
        height: 8px;
        border-radius: 5px;
        background: linear-gradient(to right, #cbd5e0 0%, #4a90e2 100%);
        outline: none;
        -webkit-appearance: none;
        cursor: pointer;
    }

        .lab-quality input[type="range"][b-3p976e80ab]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #4a90e2 100%);
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(74, 144, 226, 0.4);
            transition: all 0.3s ease;
            border: 2px solid white;
        }

            .lab-quality input[type="range"][b-3p976e80ab]::-webkit-slider-thumb:hover {
                background: linear-gradient(135deg, #5a6fd8 0%, #3d7ec4 100%);
                transform: scale(1.15);
                box-shadow: 0 3px 10px rgba(74, 144, 226, 0.6);
            }

        .lab-quality input[type="range"][b-3p976e80ab]::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #4a90e2 100%);
            cursor: pointer;
            border: 2px solid white;
            box-shadow: 0 2px 6px rgba(74, 144, 226, 0.4);
            transition: all 0.3s ease;
        }

            .lab-quality input[type="range"][b-3p976e80ab]::-moz-range-thumb:hover {
                background: linear-gradient(135deg, #5a6fd8 0%, #3d7ec4 100%);
                transform: scale(1.15);
                box-shadow: 0 3px 10px rgba(74, 144, 226, 0.6);
            }

    .lab-quality span[b-3p976e80ab] {
        font-size: 1.3rem;
        font-weight: 800;
        color: #4a90e2;
        text-align: center;
        background: linear-gradient(135deg, #e8f2ff 0%, #f0f7ff 100%);
        padding: 0.5rem;
        border-radius: 8px;
        box-shadow: inset 0 2px 4px rgba(74, 144, 226, 0.1);
    }

/* File Input Container */
.controls-container > div[b-3p976e80ab] {
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #5a6c7d;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 1px solid #e8ecf1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

    .controls-container > div:hover[b-3p976e80ab] {
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.07);
        transform: translateY(-1px);
    }

/* Size Info */
.size-info[b-3p976e80ab] {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    border: 1px solid #c5e3f6;
    color: #2c5f7d;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

/* Paste Info */
.paste-info[b-3p976e80ab] {
    font-size: 0.85rem;
    padding: 0.7rem 0.9rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    border: 1px solid #a5d6a7;
    color: #2e7d32;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
  gap: 0.5rem;
    box-shadow: 0 2px 5px rgba(46, 125, 50, 0.1);
    transition: all 0.3s ease;
}

    .paste-info:hover[b-3p976e80ab] {
      transform: translateY(-1px);
        box-shadow: 0 3px 8px rgba(46, 125, 50, 0.15);
    }

    .paste-info i[b-3p976e80ab] {
        font-size: 1.1rem;
 color: #43a047;
    }

/* Crop Button */
.crop-btn[b-3p976e80ab] {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(243, 156, 18, 0.3);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

    .crop-btn:hover[b-3p976e80ab] {
        transform: translateY(-2px);
        box-shadow: 0 5px 16px rgba(243, 156, 18, 0.45);
        background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    }

    .crop-btn:active[b-3p976e80ab] {
        transform: translateY(0);
    }

/* Hide size info divs on mobile */
/* .controls-container > div:has(+ div) {
    display: none;
} */

.controls-container > div[b-3p976e80ab] {
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    min-height: 36px;
}

/* Crop Controls */
.crop-controls[b-3p976e80ab] {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    border: 2px solid #e0e6ed;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
    flex-direction:column !important;
}

.crop-buttons-row[b-3p976e80ab] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
    justify-content: center;
    flex-wrap: wrap;
    width:100%;
}

    .crop-buttons-row:last-child[b-3p976e80ab] {
        margin-bottom: 0;
    }

.crop-controls button[b-3p976e80ab] {
    padding: 0.6rem 0.9rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #4a90e2 100%);
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(74, 144, 226, 0.3);
    flex: 1;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .crop-controls button:hover[b-3p976e80ab] {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(74, 144, 226, 0.4);
        background: linear-gradient(135deg, #5a6fd8 0%, #3d7ec4 100%);
    }

    .crop-controls button:active[b-3p976e80ab] {
        transform: translateY(0);
    }

    .crop-controls button i[b-3p976e80ab] {
        font-size: 1.1rem;
    }

.apply-crop-btn[b-3p976e80ab] {
    background: linear-gradient(135deg, #5cb85c 0%, #4cae4c 100%) !important;
    flex: 1 !important;
    font-weight: 700 !important;
}

    .apply-crop-btn:hover[b-3p976e80ab] {
        background: linear-gradient(135deg, #4cae4c 0%, #3d9a3d 100%) !important;
        box-shadow: 0 4px 10px rgba(92, 184, 92, 0.4) !important;
    }

.cancel-crop-btn[b-3p976e80ab] {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    flex: 1 !important;
    font-weight: 700 !important;
}

    .cancel-crop-btn:hover[b-3p976e80ab] {
        background: linear-gradient(135deg, #c0392b 0%, #a93226 100%) !important;
        box-shadow: 0 4px 10px rgba(231, 76, 60, 0.4) !important;
    }

/* Upload Button */
.upload-container[b-3p976e80ab] {
    width: 100%;
    margin-bottom: 0;
}
.upload-btn[b-3p976e80ab]{
    margin-top:10px;
}
.controls-container > button[b-3p976e80ab], .upload-btn[b-3p976e80ab] {
    width: 100%;
    padding: 0.95rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #5cb85c 0%, #4cae4c 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(92, 184, 92, 0.3);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

    .controls-container > button:hover[b-3p976e80ab], .upload-btn:hover[b-3p976e80ab] {
        transform: translateY(-2px);
        box-shadow: 0 5px 16px rgba(92, 184, 92, 0.45);
        background: linear-gradient(135deg, #4cae4c 0%, #3d9a3d 100%);
    }

    .controls-container > button:active[b-3p976e80ab], .upload-btn:active[b-3p976e80ab] {
        transform: translateY(0);
    }

/* Image Container */
.image-container[b-3p976e80ab] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 2rem;
    overflow: hidden;
    position: relative;
    overflow: auto;
}

#labImg[b-3p976e80ab] {
    max-width: 100%;
    max-height: 100%;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Cropper.js specific styles */
.image-container .cropper-container[b-3p976e80ab] {
    max-width: 100%;
    max-height: 100%;
}

.cropper-view-box[b-3p976e80ab],
.cropper-face[b-3p976e80ab] {
    border-radius: 0;
}

.cropper-line[b-3p976e80ab],
.cropper-point[b-3p976e80ab] {
    background-color: #4a90e2;
}

.cropper-point[b-3p976e80ab] {
    width: 10px;
    height: 10px;
    opacity: 1;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.cropper-bg[b-3p976e80ab] {
    background-image: none;
}

.cropper-modal[b-3p976e80ab] {
    background-color: rgba(0, 0, 0, 0.6);
}

.cropper-crop-box[b-3p976e80ab] {
    border: 3px solid #4a90e2;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    main[b-3p976e80ab] {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .controls-container[b-3p976e80ab] {
        width: 100%;
        min-width: unset;
        max-width: unset;
        max-height: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 1.25rem;
        flex-shrink: 0;
        order: 1;
    }

    .image-container[b-3p976e80ab] {
        min-height: 350px;
        padding: 1.5rem;
        order: 2;
    }
}

@media (max-width: 768px) {
    main[b-3p976e80ab] {
        padding: 0;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .controls-container[b-3p976e80ab] {
        padding: 0.75rem;
        overflow-y: visible;
        max-height: none;
        position: relative;
    }

    .lab-type[b-3p976e80ab],
    .lab-quality[b-3p976e80ab] {
        margin-bottom: 0.6rem;
        padding: 0.75rem;
    }

        .lab-type label[b-3p976e80ab],
        .lab-quality label[b-3p976e80ab] {
            font-size: 0.9rem;
        }

        .lab-type input[b-3p976e80ab] {
            padding: 0.6rem 0.75rem;
            font-size: 0.9rem;
            min-height: 40px;
        }

        .lab-type button[b-3p976e80ab] {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            min-height: 40px;
        }

        .lab-quality span[b-3p976e80ab] {
            font-size: 1.1rem;
            padding: 0.4rem;
        }

        .lab-quality input[type="range"][b-3p976e80ab] {
            height: 10px;
        }

            .lab-quality input[type="range"][b-3p976e80ab]::-webkit-slider-thumb {
                width: 22px;
                height: 22px;
            }

            .lab-quality input[type="range"][b-3p976e80ab]::-moz-range-thumb {
                width: 22px;
                height: 22px;
            }

    /* Hide size info on mobile */
    .size-info[b-3p976e80ab] {
        display: none;
    }

    .controls-container > div[b-3p976e80ab] {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        min-height: 36px;
    }

    .crop-btn[b-3p976e80ab] {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        min-height: 42px;
    }

    .crop-controls[b-3p976e80ab] {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .crop-buttons-row[b-3p976e80ab] {
        gap: 0.4rem;
        margin-bottom: 0.5rem;
    }

    .crop-controls button[b-3p976e80ab] {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
        min-width: 42px;
        min-height: 42px;
    }

        .crop-controls button i[b-3p976e80ab] {
            font-size: 1.05rem;
        }

    .upload-btn[b-3p976e80ab],
    .controls-container > button[b-3p976e80ab] {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        min-height: 44px;
    }

    .image-container[b-3p976e80ab] {
        padding: 0.75rem;
/*        min-height: 50vh;*/
        max-height: none;
    }
}

@media (max-width: 480px) {
    .controls-container[b-3p976e80ab] {
        padding: 0.65rem;
    }

    .lab-type[b-3p976e80ab],
    .lab-quality[b-3p976e80ab] {
        padding: 0.65rem;
        margin-bottom: 0.5rem;
    }

        .lab-type label[b-3p976e80ab] {
            font-size: 0.85rem;
        }

        .lab-type input[b-3p976e80ab] {
            padding: 0.55rem 0.7rem;
            font-size: 0.85rem;
            min-height: 38px;
        }

        .lab-type button[b-3p976e80ab] {
            padding: 0.55rem 0.9rem;
            font-size: 0.8rem;
            min-height: 38px;
        }

        .lab-quality span[b-3p976e80ab] {
            font-size: 1rem;
            padding: 0.35rem;
        }

    .crop-buttons-row[b-3p976e80ab] {
        gap: 0.3rem;
        margin-bottom: 0.4rem;
    }

    .crop-controls button[b-3p976e80ab] {
        padding: 0.55rem 0.65rem;
        font-size: 0.8rem;
        min-width: 40px;
        min-height: 40px;
    }

        .crop-controls button i[b-3p976e80ab] {
            font-size: 1rem;
        }

    .upload-btn[b-3p976e80ab],
    .controls-container > button[b-3p976e80ab] {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        min-height: 42px;
    }

    .image-container[b-3p976e80ab] {
        padding: 0.65rem;
/*        min-height: 45vh;*/
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .controls-container[b-3p976e80ab] {
        padding: 0.6rem;
    }

    .lab-type[b-3p976e80ab],
    .lab-quality[b-3p976e80ab] {
        padding: 0.6rem;
        margin-bottom: 0.45rem;
    }

    .crop-buttons-row[b-3p976e80ab] {
        gap: 0.25rem;
    }

    .crop-controls button[b-3p976e80ab] {
        padding: 0.5rem 0.6rem;
        min-width: 38px;
        min-height: 38px;
    }
}

/* Custom File Input Styling */
[b-3p976e80ab] .blazor-file-input {
    display: none;
}

    [b-3p976e80ab] .blazor-file-input + label,
    [b-3p976e80ab] input[type="file"] {
        width: 100%;
        padding: 1rem;
        background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
        border: 2px dashed #cbd5e0;
        border-radius: 8px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #5a6c7d;
        font-weight: 600;
        font-size: 0.9rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        [b-3p976e80ab] .blazor-file-input + label:hover,
        [b-3p976e80ab] input[type="file"]:hover {
            border-color: #4a90e2;
            background: linear-gradient(135deg, #f7faff 0%, #ffffff 100%);
            color: #4a90e2;
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(74, 144, 226, 0.12);
        }

@media (max-width: 768px) {
    [b-3p976e80ab] .blazor-file-input + label,
    [b-3p976e80ab] input[type="file"] {
        padding: 0.75rem;
        font-size: 0.85rem;
        min-height: 42px;
    }
}

/* Prevent zoom on focus on iOS */
@media (max-width: 768px) {
    input[b-3p976e80ab], select[b-3p976e80ab], textarea[b-3p976e80ab] {
        font-size: 16px !important;
    }
}
/* /Pages/MyPages/AddPt/AddPt.razor.rz.scp.css */
main[b-vjvabjpcsm] {
    display: flex;
}

.new-pt[b-vjvabjpcsm] {
    width: 30%;
    height: 86vh;
}

.new-pt-container[b-vjvabjpcsm] {
    border: groove;
    border-color: #007bff;
    border-radius: 20px;
    padding: 20px;
}

.present-pt[b-vjvabjpcsm] {
    width: 70%;
    height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
    .present-pt .search-container[b-vjvabjpcsm] {
        width: 100%
    }

    .present-pt .reservation[b-vjvabjpcsm] {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        justify-content: space-evenly;
    }
button[b-vjvabjpcsm] {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    display: block;
    flex-wrap: wrap;
    right: 50%;
    transform: translateX(50%);
    position: relative;
}



.exam-container[b-vjvabjpcsm] {
    border: groove;
    border-color: #007bff;
    border-radius: 20px;
    padding: 20px;
    height: 78vh;
    overflow: scroll;
}
@media (max-width: 767px) {
    main[b-vjvabjpcsm] {
        display: flex;
        flex-direction:column;
    }
    .new-pt[b-vjvabjpcsm] {
        width: 100%;
        height: auto;
    }
    .present-pt[b-vjvabjpcsm] {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
        .present-pt .reservation[b-vjvabjpcsm]{
            flex-direction:column;
        }
}

/* /Pages/MyPages/AddPt/PtNameUpdateInsert.razor.rz.scp.css */
[b-a6m97un41h] .form {
    display: flex;
    flex-wrap: wrap;
    direction: rtl;
    flex-direction: column;
}

.form-group[b-a6m97un41h] {
    /*margin-bottom: 20px;*/
    display: flex;
    direction: rtl;
    /*width:50%;*/
}

.tel[b-a6m97un41h] {
    /*width: 33%;*/
}

label[b-a6m97un41h] {
    font-weight: bold;
    min-width: fit-content;
}

.gender-group[b-a6m97un41h] {
    display: flex;
    direction: rtl;
}

.form-control[b-a6m97un41h] {
    padding: 10px;
    border-radius: 5px;
    /*width: 49%;*/
}

[b-a6m97un41h] .red-flag {
    animation: flash-b-a6m97un41h 2s linear infinite alternate !important;
    color: white !important;
}

@keyframes flash-b-a6m97un41h {
    0% {
        background-color: red;
        color: white;
    }

    50% {
        background-color: white;
        color: red;
    }

    100% {
        background-color: red;
        color: white;
    }
}

button[type="submit"][b-a6m97un41h] {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: block;
    flex-wrap: wrap;
    /*    right: 50%;
    transform: translateX(50%);
    position: relative;*/
}

.button-container[b-a6m97un41h] {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
}

    .button-container i[b-a6m97un41h] {
        font-size: 2em;
        color: #ff0000cc;
    }

        .button-container i:hover[b-a6m97un41h] {
            transform: rotate(20deg);
            color: red;
            cursor: pointer;
        }

.btn-warning[b-a6m97un41h] {
    background-color: #bbd4ed;
    width: 100px;
}

.gender-group[b-a6m97un41h] {
    display: flex;
    align-items: center;
    /*margin-bottom: 20px;*/
    direction: rtl;
}

    .gender-group label[b-a6m97un41h] {
        margin-left: 20px;
        font-weight: bold;
        color: black;
        border-radius: 10%;
        padding: 10px;
    }

    .gender-group input[type="radio"][b-a6m97un41h] {
        appearance: none;
        background-color: transparent;
        border: 2px solid blue;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        margin-left: 10px;
    }

        .gender-group input[type="radio"]:checked[b-a6m97un41h] {
            background-color: blue;
        }

            .gender-group input[type="radio"]:checked + label[b-a6m97un41h] {
                /*background-image: linear-gradient(to right, #4b6cb7, #182848);*/
                /*background-image: radial-gradient(circle at top left, #4b6cb7, #182848, #F5A623);*/
                background-image: radial-gradient(circle at center, #4b6cb7, #182848);
                color: white;
            }

.alert-container[b-a6m97un41h] {
    display: flex;
    align-items: center;
    color: red;
}

.siren-icon[b-a6m97un41h] {
    animation: flip-b-a6m97un41h 2s infinite;
    height: 4vw;
}

@keyframes flip-b-a6m97un41h {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.age-calculator[b-a6m97un41h] {
    display: flex;
    flex-direction: row;
    direction: rtl;
}

.age-inputs[b-a6m97un41h] {
    display: inline-flex;
    gap: 10px;
    direction:ltr;
    margin-top: 5px;
}

.age-label[b-a6m97un41h] {
    direction: rtl !important;
    text-align: right;
}

.age-input-group[b-a6m97un41h] {
    display: inline-flex;
    align-items: center;
}

    .age-input-group input[b-a6m97un41h] {
        width: 50px;
        padding: 5px;
        border: 1px solid #ccc;
        border-radius: 5px 0 0 5px;
        text-align: center;
    }

    .age-input-group span[b-a6m97un41h] {
        padding: 5px 10px;
        background-color: gray;
        color: white;
        border-radius: 0 10px 10px 0;
        height: 30px;
        display: flex;
        align-items: center;
        font-weight: bold;
    }

@media (max-width: 767px) {
    [b-a6m97un41h] .form {
        display: flex;
        flex-wrap: wrap;
        direction: rtl;
        flex-direction: column;
    }

    .form-group[b-a6m97un41h] {
        margin-bottom: 20px;
        display: flex;
        direction: rtl;
        width: 100%;
    }
}
/* /Pages/MyPages/Bili.razor.rz.scp.css */
.main[b-s82slt3lm6] {
    display: flex;
    flex-direction: row;
}

.data-container[b-s82slt3lm6] {
    display: flex;
    flex-direction: column;
}

.table_container[b-s82slt3lm6] {
    width: 80%;
}

.table[b-s82slt3lm6] {
    width: 100%;
    border-collapse: collapse;
    font-size: small;
}

    .table th[b-s82slt3lm6],
    .table td[b-s82slt3lm6] {
        padding: 8px;
        border: 1px solid #ccc;
    }

    .table th[b-s82slt3lm6] {
        background-color: #f2f2f2;
        text-align: left;
        font-weight: bold;
    }

    .table tr:nth-child(even)[b-s82slt3lm6] {
        background-color: #f9f9f9;
    }

    .table tr:hover[b-s82slt3lm6] {
        background-color: #eaeaea;
    }

.gest-info-contaier[b-s82slt3lm6] {
    display: flex;
    flex-direction: row;
}

.gestage-container[b-s82slt3lm6] {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.gest-info-contaier input[b-s82slt3lm6] {
    width: 60px;
}
.chart-container[b-s82slt3lm6] {
    display: flex;
    flex-direction: column;
    width:50vw;
    border:groove;
    border-color:black;     
}
.chart[b-s82slt3lm6] {
    width: 100%;
}
.follow-up[b-s82slt3lm6]{
    background-color:aliceblue;
    height:100%;
}
button[b-s82slt3lm6] {
    background-color: red;
    color: white;
    border-radius: 25px;
    width: 50px;
    height: 50px
}
.checkbox[b-s82slt3lm6] {
    background-color: #29619d;
    color: white;
}
footer[b-s82slt3lm6] {
    background-color: #ecf0f7;
}
@media (max-width: 767px) {
    .main[b-s82slt3lm6] {
        display: flex;
        flex-direction: column;
    }
    .table_container[b-s82slt3lm6] {
        width: 100%;
    }
    .gest-info-contaier[b-s82slt3lm6] {
        display: flex;
        flex-direction: column;
    }
    .gestage-container[b-s82slt3lm6] {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .chart-container[b-s82slt3lm6] {
        
        width: 95vw;
        
    }
    .chart[b-s82slt3lm6] {
        width: 100%;
    }
    .follow-up[b-s82slt3lm6] {
        background-color: aliceblue;
        height: 100%;
    }
}
/* /Pages/MyPages/BirthWt.razor.rz.scp.css */
.main[b-1nghg7wflf] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-container[b-1nghg7wflf] {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}
.inline-group[b-1nghg7wflf] {
    display: inline-flex;
    align-items: center;
}
.inline-group input[b-1nghg7wflf]{
    width: 70px;
    min-width:70px;
}
.inline-group label[b-1nghg7wflf]{
    margin:0;
}
.chart[b-1nghg7wflf] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 600px;
    height: 450px;
    margin-bottom: 20px;
}

    .chart[b-1nghg7wflf]  canvas {
        height: 100%;
        width: 100%;
    }

@media (max-width: 768px) {
    .chart[b-1nghg7wflf] {
        width: 100%;
        height: auto;
    }

        .chart[b-1nghg7wflf]  canvas {
            height: auto;
            width: 100%;
        }
}

@media (max-width: 480px) {
    .input-container[b-1nghg7wflf] {
        flex-direction: column;
        align-items: center;
    }

    .chart[b-1nghg7wflf] {
        width: 90%;
        height: auto;
    }

        .chart[b-1nghg7wflf]  canvas {
            height: auto;
            width: 90%;
        }
}
/* /Pages/MyPages/CalculateAge.razor.rz.scp.css */
.main[b-h1we8842ai] {
    word-break: break-word;
    width: 250px;
    text-align-last: center;
    direction: ltr;
}
input[b-h1we8842ai]{
 width:50px;
 margin:15px 0;
}
button[b-h1we8842ai]{
    width:70px;
    font-size:small;
    min-width:fit-content;
}
InputDate[b-h1we8842ai] {
     width:180px
}
span[b-h1we8842ai] {
    align-self: center;
    padding-right: 5px;
    color: white;
    background-color: gray;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    height: 30px;
}
/* /Pages/MyPages/ChatgptAnswer.razor.rz.scp.css */
body[b-taqh4c4wcl] {
    height: 80vh;
    overflow: scroll;
}
.answer-txt[b-taqh4c4wcl] {
    background-color: white;
    color: black;
    width: 100%;
    overflow: auto;
    white-space: pre-wrap;
}
.my-dialouge[b-taqh4c4wcl] {
    
    opacity: 70%;
    
}
.tokens[b-taqh4c4wcl] {
    background-color: darkcyan;
    color: white;
    width:fit-content;
    text-align:center;
    display:flex;
    margin:auto;    
}
/* /Pages/MyPages/Clinics.razor.rz.scp.css */
main[b-omjioqs400] {
    display: flex;
    flex-direction: column;
    /*position: relative;
    width: 100%;*/
    height: 100%;
    position: fixed;
    width: 98%;
}

.pt-data-div[b-omjioqs400] {
    z-index: 1000;
    font-size: small;
    position: relative;
    top: -17px;
}

.exam-clinic-container[b-omjioqs400] {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.exam-container[b-omjioqs400] {
    overflow: auto;
    width: 80%;
    height: 88vh;
    /* Firefox scrollbar styling */
    scrollbar-width: auto;
/*    scrollbar-color: #067009 #f1f1f1;*/
}

/* Modern Custom Scrollbar Styles for Webkit browsers */
.exam-container[b-omjioqs400]::-webkit-scrollbar {
    width: 20px !important; /* Force thicker scrollbar */
    height: 20px !important;
}

.exam-container[b-omjioqs400]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
    margin: 5px;
}

    .exam-container[b-omjioqs400]::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #7e7e89, #2c2b34);
        border-radius: 10px;
        border: 3px solid #f1f1f1;
        min-height: 40px;
    }

        .exam-container[b-omjioqs400]::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(0deg, #7e7e89, #2c2b34);
            border: 2px solid #f1f1f1;
        }

/* Add scrollbar button styling */
.exam-container[b-omjioqs400]::-webkit-scrollbar-button {
    display: block;
    height: 10px;
}

.clinic-container[b-omjioqs400] {
    width: 20%;
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0px;
    height: 88vh;
    scroll-behavior: smooth;
    /*margin-bottom: 15px;
    padding-bottom: 70px;*/
}

    .clinic-container .clinic-btns[b-omjioqs400] {
        display: inline-flex;
        justify-content: space-around;
    }

.refresh-btn[b-omjioqs400] {
    border: none;
    background-color: inherit;
}

    .refresh-btn img[b-omjioqs400] {
        width: 30px;
    }

.clinic-container .close-clinic[b-omjioqs400] {
    width: 50%;
    color: white;
    position: sticky;
    top: 8%;
    z-index: 1;
    text-align: center;
    background: #067009;
    border-radius: 50px;
    border-style: solid;
    opacity: 80%;
    cursor: pointer;
}

.clinic-container .close-clinic-solo[b-omjioqs400] {
    width: fit-content;
    color: white;
    position: sticky;
    top: 8%;
    z-index: 1;
    text-align: center;
    background: #067009;
    border-radius: 50px;
    border-style: solid;
    opacity: 80%;
    cursor: pointer;
    padding: 5px;
}

.clinic-container .close-clinic:hover[b-omjioqs400] {
    transform: scale(1.2)
}

.clinic-container .add-pt[b-omjioqs400] {
    width: fit-content;
    color: white;
    position: sticky;
    top: 8%;
    z-index: 1;
    text-align: center;
    background: #067009;
    border-radius: 50px;
    border-style: solid;
    opacity: 80%;
    cursor: pointer;
    padding: 5px;
}

.clinic-container .print-clinic-icon[b-omjioqs400] {
    color: green;
    font-size: 40px;
    cursor: pointer;
}

/*.clinics-column {
    overflow: auto;
    width: 100%;*/
    /*height: 100vh;*/
    /*direction: rtl;
    flex: auto;
    display: flex;
    flex-direction: column;
    text-align: right;
    padding-bottom: 100px;
    overflow-y: auto;
    max-height: calc(100vh - 200px);*/ /* Adjust based on your layout */
    /*position: relative;

}*/
.clinics-column[b-omjioqs400] {
    overflow: auto;
    width: 100%;
    /*height: 100vh;*/
    direction: ltr; /* Changed from rtl to ltr */
    flex: auto;
    display: flex;
    flex-direction: column;
    text-align: right;
    padding-bottom: 100px;
    overflow-y: auto;
    max-height: calc(100vh - 200px); /* Adjust based on your layout */
    position: relative;
}

    /* Add custom scrollbar styling for clinics-column */
    .clinics-column[b-omjioqs400]::-webkit-scrollbar {
        width: 20px;
    }

    .clinics-column[b-omjioqs400]::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .clinics-column[b-omjioqs400]::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #7e7e89, #2c2b34);
        border-radius: 10px;
        border: 2px solid #f1f1f1;
    }

        .clinics-column[b-omjioqs400]::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(0deg, #7e7e89, #2c2b34);
        }

    /* Ensure child elements maintain RTL */
    .clinics-column > *[b-omjioqs400] {
        direction: rtl;
    }

.clinic-details-div[b-omjioqs400], .clinic-details-div-selected[b-omjioqs400] {
    display: flex;
    justify-content: space-between;
    border-style: groove;
    border-radius: 10px
}

    .clinic-details-div:hover[b-omjioqs400], .clinic-details-div-selected:hover[b-omjioqs400] {
        font-size: large;
        direction: rtl;
        cursor: pointer;
        text-align: right
    }

.clinic-details-div-selected[b-omjioqs400] {
    border: solid 5px;
    border-color: red;
    font-size: larger;
}

.clinic-details-number[b-omjioqs400] {
    width: 7%;
    display: flex;
    vertical-align: middle;
    text-align: center;
    border-radius: 50%;
    align-self: center;
    align-content: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

    .clinic-details-number i[b-omjioqs400] {
        display: none;
    }

.clinic-details-div:hover i[b-omjioqs400] {
    display: block;
}

.clinic-details-div-selected:hover i[b-omjioqs400] {
    display: block;
}

.clinic-details-name[b-omjioqs400] {
    width: 58%;
    border-left: inset;
    border-left-color: snow;
    border-right: inset;
    font-size: larger;
    direction: rtl;
    align-self: center;
    display: flex;
}

.clinic-details-date[b-omjioqs400] {
    width: 27%;
    position: relative;
    font-size: small;
    display: grid;
    direction: rtl;
    text-align: center;
}

.add-exam[b-omjioqs400] {
    display: inline-flex;
    width: 98%;
    position: fixed;
    bottom: -60px;
    opacity: 50%;
    z-index: 1000;
    transition-delay: 1s;
}

    .add-exam:hover[b-omjioqs400] {
        opacity: 100%;
        transform: translateY(-60px);
        transition: 0.3s;
    }

.add-exam-fixed[b-omjioqs400] {
    display: inline-flex;
    width: 98%;
    position: fixed;
    bottom: 0;
    z-index: 1000;
}

.pin[b-omjioqs400] {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 72px;
    left: -32px;
    z-index: 3;
}

.center[b-omjioqs400] {
    margin: 0 auto;
    width: 50%;
}

    .center input[type="checkbox"][b-omjioqs400] {
        position: relative;
        display: inline-block;
        min-height: 20px;
        min-width: 20px;
        background: #ebebeb;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: radial-gradient(black, transparent);
        font-size:8px;
    }

        .center input[type="checkbox"][b-omjioqs400]:after {
            content: '';
            font-size: 2em;
            text-align: center;
            line-height: inherit;
            color: #555555;
            position: absolute;
            margin: auto auto;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            display: block;
            height: auto;
            width: auto;
            border-radius: 50%;
            background-image: none;
            background-repeat: no-repeat;
            background-position: center;
            background-color: #ffffff;
            -webkit-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

        .center input[type="checkbox"][b-omjioqs400]:before {
            position: absolute;
            margin: auto auto;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            content: '';
            display: block;
            height: auto;
            width: auto;
            border: 2px solid #fff;
            border-radius: 50%;
            -webkit-transition: all 0.1s ease-in;
            -moz-transition: all 0.1s ease-in;
            -o-transition: all 0.1s ease-in;
            transition: all 0.1s ease-in;
        }

        .center input[type="checkbox"]:hover[b-omjioqs400]:before {
            height: auto;
            width: auto;
        }

        .center input[type="checkbox"]:checked[b-omjioqs400]:before {
            height: 100%;
            width: 100%;
            background: #dd3455;
            border: none;
            border-radius: 0;
        }

        .center input[type="checkbox"]:focus[b-omjioqs400] {
            outline: none;
        }

        .center input[type="checkbox"].a[b-omjioqs400]:after {
            content: '';
        }


        .center input[type="checkbox"]:checked[b-omjioqs400]:after {
            content: '✓';
        }

.intro-overlay[b-omjioqs400] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    z-index: 9999; /* Ensure the overlay appears on top of other elements */
}

.intro-container[b-omjioqs400] {
    position: fixed;
    top: 122px;
    right: 91px;
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 9999;
    width: 30%;
}

.intro-message[b-omjioqs400] {
    font-size: 14px; /* Adjust the font size as needed */
    margin-bottom: 10px; /* Add spacing between the message and the button */
    display: inline-block;
}

.arrow[b-omjioqs400] {
    position: absolute;
    top: -13px;
    right: -11px;
    width: 29px;
    height: 29px;
    background-color: #fff;
    transform: rotate(225deg);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    clip-path: polygon(100% 0, 100% 50%, 50% 100%, 0 50%, 0 0);
}


.intro-button[b-omjioqs400] {
    /* Add styles for the introduction button as needed */
}

.dialoge-container[b-omjioqs400] {
    overflow: auto;
    height: inherit;
}

#myModal[b-omjioqs400] {
    display: block;
    background-color: white;
}


#close-icon[b-omjioqs400] {
    margin-left: 45%;
    font-size: 40px;
    cursor: pointer;
}


@media (max-width: 676px) {
    .clinic-container[b-omjioqs400] {
        height: 65vh;
    }

    .clinics-column[b-omjioqs400] {
        margin-right: 5px;
    }

    .clinic-container .clinic-btns[b-omjioqs400] {
        display: flex;
        flex-direction: column;
        font-size: smaller;
        align-items: center;
    }

    .clinic-details-div[b-omjioqs400], .clinic-details-div-selected[b-omjioqs400] {
        flex-direction: column;
        width: auto;
        text-align: center;
        font-size: small;
        margin-right: 10px;
    }

        .clinic-details-div > div[b-omjioqs400], .clinic-details-div-selected > div[b-omjioqs400] {
            text-align: center;
            border-bottom-style: groove;
            border-bottom-color: lightgray;
            border-left: none;
            width: 100%;
        }

        .clinic-details-div:hover[b-omjioqs400], .clinic-details-div-selected:hover[b-omjioqs400] {
            font-size: small;
            direction: rtl;
            cursor: pointer;
            text-align: right
        }


    .clinic-details-number[b-omjioqs400] {
        display: flex;
        flex-direction: column-reverse;
    }

    .add-exam[b-omjioqs400] {
        font-size: smaller;
        bottom: -90px;
    }

        .add-exam:hover[b-omjioqs400] {
            opacity: 100%;
            transform: translateY(-90px);
            transition: 0.3s;
        }

    .clinic-container .close-clinic[b-omjioqs400] {
        width: 100%;
        color: white;
        position: sticky;
        top: 20%;
        z-index: 1;
        text-align: center;
        background: #067009;
        border-radius: 50px;
        border-style: solid;
        opacity: 80%;
        cursor: pointer;
    }

    .clinic-details-number i[b-omjioqs400] {
        display: flex;
    }

    .intro-container[b-omjioqs400] {
        position: fixed;
        top: 153px;
        right: 50px;
        background-color: #fff;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        z-index: 9999;
        width: 30%;
    }
}
/* /Pages/MyPages/ClinicSettings.razor.rz.scp.css */
main[b-g1d0agql1z] {
    display: flex;
    width: fit-content;
    margin: auto;
}
button[b-g1d0agql1z] {
    background-color: white;
    color: blue;
    width: fit-content;
   
}
    button:hover[b-g1d0agql1z] {
        background-color: blue;
        color: white;
    }
    .container[b-g1d0agql1z]{
        display:flex;
        flex-direction:column;

    }
/* /Pages/MyPages/Exams.razor.rz.scp.css */
main[b-itox4a6ytw] {
    position: relative;
}



.intro-container[b-itox4a6ytw] {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 25%;
    right: 50%;
    background-color: #fff;
    padding: 10px;
    border: 3px solid #ccc;
    border-color: red;
    border-radius: 5px;
    z-index: 9999;
    width: 30%;
    animation: fade-out-b-itox4a6ytw 1s linear infinite;
}

.intro-message[b-itox4a6ytw] {
    font-size: 14px; /* Adjust the font size as needed */
    margin-bottom: 10px; /* Add spacing between the message and the button */
    display: inline-block;
    background-color: white;
    opacity: 0.95;
}

.pin[b-itox4a6ytw] {
    width: 50px;
    height: 50px;
    position: absolute;
    top: -7px;
    left: -16px;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

    .pin:hover[b-itox4a6ytw] {
        transform: rotate(15deg) scale(1.1);
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
    }

.intro-button[b-itox4a6ytw] {
    /* Add styles for the introduction button as needed */
}

.dialog-container[b-itox4a6ytw] {
    overflow: scroll;
}

.dialog-container-growth[b-itox4a6ytw] {
    width: 100%;
    height: 100%;
}

.dialog-container-addlab[b-itox4a6ytw] {
    width: 100%;
    height: 100%;
    align-content: center;
}

.dialog-container-prescription[b-itox4a6ytw] {
    display: flex;
    flex-direction: column;
}

.exam-table[b-itox4a6ytw] {
    margin: auto;
    width: 100%;
    display: inline-flex;
    flex-direction: column;
    padding-bottom: 160px;
}

.pt-name-container[b-itox4a6ytw] {
    z-index: 2;
    position: relative;
}

.pt-name-container[b-itox4a6ytw], .pt-name-container-fixed[b-itox4a6ytw] {
    display: inline-flex;
    font-size: large;
    width: 100%;
    justify-content: space-evenly;
    direction: rtl;
    text-align: center;
    margin: auto;
    flex-wrap: wrap;
    gap: 12px;
    padding: 5px 20px;
    background: linear-gradient(135deg, rgb(173 128 238 / 65%) 0%, rgb(198 210 255 / 95%) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

    .pt-name-container h3[b-itox4a6ytw] {
        margin: 0;
        font-weight: 600;
        color: #2c3e50;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .pt-name-container button[b-itox4a6ytw] {
        border-radius: 12px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        padding: 10px 20px;
        font-weight: 500;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        position: relative;
        overflow: hidden;
    }

        .pt-name-container button[b-itox4a6ytw]::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .pt-name-container button:hover[b-itox4a6ytw] {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
        }

            .pt-name-container button:hover[b-itox4a6ytw]::before {
                left: 100%;
            }

        .pt-name-container button:active[b-itox4a6ytw] {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
        }

    .pt-name-container .calculate-BD[b-itox4a6ytw] {
        position: absolute;
        z-index: 1;
        background: white;
        border: none;
        border-radius: 16px;
        direction: ltr;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        padding: 20px;
    }

.fixed[b-itox4a6ytw] {
    position: sticky;
    top: 0;
    z-index: 3;
    background: linear-gradient(135deg, rgb(173 128 238 / 65%) 0%, rgb(198 210 255 / 95%) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    animation: slideDown-b-itox4a6ytw 0.3s ease-out;
}

@keyframes slideDown-b-itox4a6ytw {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.exam-ht-hc-vacc[b-itox4a6ytw] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

    .exam-ht-hc-vacc label[b-itox4a6ytw] {
        margin: 0;
        color: #2c3e50;
        font-weight: 500;
        font-size: 14px;
        cursor: pointer;
        user-select: none;
    }

    .exam-ht-hc-vacc input[type="checkbox"][b-itox4a6ytw] {
        cursor: pointer;
        width: 18px;
        height: 18px;
        accent-color: #667eea;
    }

.exam-table-header[b-itox4a6ytw] {
    color: white;
    background-color: blue;
    font-size: large;
    align-self: center;
    width: 100%;
}

.exam-table-row[b-itox4a6ytw] {
    /*position: relative;
    display: inline-flex;*/
    /*border-color: lightgray;*/
    /*border-radius: 10px;*/
    /*border-style: groove;*/
    /*margin: 5px;
    box-shadow: 0px 0 7px 2px #979908;*/
    position: relative;
    display: inline-flex;
    border-color: #777;
    border-radius: 6px;
    border-style: solid;
    margin: 0 0;
}




    .exam-table-row > div[b-itox4a6ytw] {
        display: inline-flex;
        min-width: min-content;
        overflow: auto;
        align-items: center;
        padding: 4px;
    }

        .exam-table-row > div:not(:first-child)[b-itox4a6ytw] {
            border-left: inset;
            border-color: #e1d3d36b;
        }

    .exam-table-row:has(.inv-div) > div[b-itox4a6ytw] {
        border-left: none;
    }

    .exam-table-row:has(.inv-div)[b-itox4a6ytw] {
        margin-top: -8px;
        border-top: none;
        box-shadow: 3px 6px 7px 2px #979908;
    }

    .exam-table-row .exam-table-row-date[b-itox4a6ytw] {
        width: 8%;
        font-size: smaller;
        word-break: normal;
    }

    .exam-table-row .exam-table-row-doc-name[b-itox4a6ytw] {
        width: 8%;
        font-size: small;
    }

    /*-----------------------------------------------Wt---------------------------------------------*/

    .exam-table-row .exam-table-row-wt[b-itox4a6ytw] {
        min-width: fit-content;
        width: 4%;
        cursor: pointer;
    }

        .exam-table-row .exam-table-row-wt .wt-z-score[b-itox4a6ytw] {
            position: absolute;
            background-color: red;
            left: 15%;
            top: -5px;
            color: white;
            display: none;
            border-radius: 10px;
            padding: 2px;
            border: groove;
            border-color: brown;
            opacity: 0.7;
            font-size: small;
        }

        .exam-table-row .exam-table-row-wt:hover .wt-z-score[b-itox4a6ytw] {
            display: block;
            background-color: green;
        }
    /*-----------------------------------------------Ht---------------------------------------------*/
    .exam-table-row .exam-table-row-ht[b-itox4a6ytw] {
        min-width: fit-content;
        width: auto;
        cursor: pointer;
    }

        .exam-table-row .exam-table-row-ht .ht-z-score[b-itox4a6ytw] {
            position: absolute;
            background-color: red;
            left: 19%;
            top: -5px;
            color: white;
            display: none;
            border-radius: 10px;
            padding: 2px;
            border: groove;
            border-color: brown;
            opacity: 0.7;
            font-size: small;
        }

        .exam-table-row .exam-table-row-ht:hover .ht-z-score[b-itox4a6ytw] {
            display: block;
            background-color: green;
        }

    /*-----------------------------------------------Hc---------------------------------------------*/
    .exam-table-row .exam-table-row-hc[b-itox4a6ytw] {
        min-width: fit-content;
        width: auto;
    }

        .exam-table-row .exam-table-row-hc .hc-z-score[b-itox4a6ytw] {
            position: absolute;
            background-color: red;
            left: 21%;
            top: -5px;
            color: white;
            display: none;
            border-radius: 10px;
            padding: 2px;
            border: groove;
            border-color: brown;
            opacity: 0.7;
            font-size: small;
        }

        .exam-table-row .exam-table-row-hc:hover .hc-z-score[b-itox4a6ytw] {
            display: block;
            background-color: green;
        }

    .exam-table-row .exam-table-row-complaint[b-itox4a6ytw] {
        width: 20%;
    }

    .exam-table-row .exam-table-row-exam[b-itox4a6ytw] {
        width: 20%;
    }

    .exam-table-row .exam-table-row-diagnosis[b-itox4a6ytw] {
        width: 20%;
    }

    .exam-table-row .exam-table-row-treatment[b-itox4a6ytw] {
        width: 20%;
    }

    .exam-table-row .icon-container[b-itox4a6ytw] {
        display: none;
        position: absolute;
    }

    .exam-table-row .icon-container-upload[b-itox4a6ytw] {
        display: none;
        position: absolute;
    }

    .exam-table-row .icon-container-ai[b-itox4a6ytw] {
        display: none;
        position: absolute;
    }

    .exam-table-row .icon-container-prescription[b-itox4a6ytw] {
        display: none;
        position: absolute;
    }

    .exam-table-row .icon-container i[b-itox4a6ytw] {
        opacity: 50%;
    }

    .exam-table-row:hover .icon-container[b-itox4a6ytw] {
        display: inline-flex;
    }

    .exam-table-row:hover i:first-child[b-itox4a6ytw] {
        border-left: none;
        font-size: xx-large;
        padding-left: 10px;
        padding-top: 10px;
        opacity: 60%;
        cursor: pointer;
        transition: 0.5s;
    }

    .exam-table-row:hover i:nth-child(2)[b-itox4a6ytw] {
        border-left: none;
        font-size: xx-large;
        padding-left: 10px;
        padding-top: 10px;
        opacity: 60%;
        cursor: pointer;
        transition: 0.5s;
    }

    .exam-table-row:hover .icon-container-upload[b-itox4a6ytw] {
        right: 5px;
        top: -25px;
        display: inline-flex;
    }

    .exam-table-row:hover .icon-container-ai[b-itox4a6ytw] {
        right: 70px;
        top: -25px;
        display: inline-flex;
    }

    .exam-table-row:hover .icon-container-prescription[b-itox4a6ytw] {
        right: 150px;
        top: -25px;
        display: inline-flex;
    }

#myModal[b-itox4a6ytw] {
    display: block;
    background-color: rgba(10,10,10,.6);
}

#close-icon[b-itox4a6ytw] {
    margin-top: 30vh;
    margin-left: 45%;
    font-size: 80px;
    cursor: pointer;
}

#close-icon-ai[b-itox4a6ytw] {
    margin-left: 45%;
    font-size: 80px;
    cursor: pointer;
}

#close-icon-norms[b-itox4a6ytw] {
    margin-top: 0vh;
    margin-left: 45%;
    font-size: 80px;
    cursor: pointer;
}

#close-icon-prescription[b-itox4a6ytw] {
    margin-top: 0vh;
    margin-left: 45%;
    font-size: 40px;
    cursor: pointer;
    color: white;
}

#close-icon-addlab[b-itox4a6ytw] {
    margin-top: 0vh;
    margin-left: 45%;
    font-size: 40px;
    cursor: pointer;
    color: white;
}

#close-icon-lab[b-itox4a6ytw] {
    margin-top: 0vh;
    margin-left: 45%;
    font-size: 40px;
    cursor: pointer;
    color: white;
}

#close-icon-curves[b-itox4a6ytw] {
    margin-top: 0vh;
    margin-left: 45%;
    font-size: 40px;
    cursor: pointer;
    color: white;
}

@keyframes fade-out-b-itox4a6ytw {
    0% {
        background-color: red;
        opacity: 1;
    }

    100% {
        background-color: white;
        opacity: 1;
    }
}

/* Apply the animation to the element */
.fade-out-animation[b-itox4a6ytw] {
    animation: fade-out-b-itox4a6ytw 1s ease-in-out infinite;
}

@media (max-width: 767px) {
    .exam-table > div:first-child[b-itox4a6ytw] {
        display: none;
    }

    .exam-table-row[b-itox4a6ytw] {
        flex-direction: column;
    }

        .exam-table-row > div[b-itox4a6ytw] {
            width: 100% !important;
            border: 1px solid !important;
            border-color: gray !important;
        }

        .exam-table-row .vanish[b-itox4a6ytw] {
            display: none;
        }

        .exam-table-row .exam-table-row-wt:hover .wt-z-score[b-itox4a6ytw] {
            display: block;
            top: 50px;
        }

        .exam-table-row .exam-table-row-ht:hover .ht-z-score[b-itox4a6ytw] {
            display: block;
            top: 90px;
        }

        .exam-table-row .exam-table-row-hc:hover .hc-z-score[b-itox4a6ytw] {
            display: block;
            top: 130px;
        }

    .pt-name-container[b-itox4a6ytw] {
        font-size: medium;
        padding: 15px;
        gap: 10px;
        border-radius: 12px;
    }

        .pt-name-container h3[b-itox4a6ytw] {
            font-size: 1.2rem;
        }

        .pt-name-container button[b-itox4a6ytw] {
            font-size: 13px;
            min-width: fit-content;
            padding: 8px 16px;
        }

    .exam-ht-hc-vacc[b-itox4a6ytw] {
        flex-wrap: wrap;
        justify-content: center;
    }

    #myModal[b-itox4a6ytw] {
        overflow: scroll;
        height: 100%;
    }
}

.vaccination-shedule-container[b-itox4a6ytw] {
    position: fixed;
    top: 9%;
    left: 0;
    overflow: auto;
    height: 95vh;
    width: 100%;
    opacity: 1;
    background-color: #c5babade;
    z-index: 2000;
}

.gender-icon[b-itox4a6ytw] {
    width: 50px;
    height: 50px;
    margin-left: 5px;
    border-radius:25px;
}
/* /Pages/MyPages/GrowthCharts.razor.rz.scp.css */
body[b-dj8mvrlp90] {
    display: flex;
    position: relative;
    height: 100%;
    width: 100%;
    justify-content: center;
    overflow: auto;
    opacity: 1;
    background: white;
}
.chart-container[b-dj8mvrlp90]{
    height: auto;
    min-height: 600px;
    width: 90%;
    max-width: 1200px;
    overflow: auto;
    padding: 20px;
    margin: 0 auto;
}
.button-container[b-dj8mvrlp90] {
    display: inline-flex;
    justify-content: space-evenly;
    width: 50%;
    position: relative;
    left: 25%;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.button-container button[b-dj8mvrlp90] {
    border-radius: 20px;
    background-color: #ced7fd;
}
.active-btn[b-dj8mvrlp90]{
    color:black;
}
.inactive-btn[b-dj8mvrlp90] {
    color: gray;
}
.chart-canvas[b-dj8mvrlp90] {
    width: 100% !important;
    height: 500px !important;
    max-width: 100%;
}
.show-horizontal[b-dj8mvrlp90]{
    display:none;
}
@media (max-width: 666px) {
    .show-horizontal[b-dj8mvrlp90] {
        display: block;
    }
    .chart-canvas[b-dj8mvrlp90] {
        height: 400px !important;
    }
}
/* /Pages/MyPages/InteractiveGrowthCharts.razor.rz.scp.css */
body[b-i6apsv60a6] {
    display: flex;
    position: relative;
    height: 100%;
    width: 100%;
    justify-content: center;
    overflow: auto;
    opacity: 1;
  background: white;
}

.chart-container[b-i6apsv60a6] {
    height: auto;
min-height: 700px;
    width: 95%;
    max-width: 1400px;
    overflow: auto;
  padding: 20px;
    margin: 0 auto;
}

.controls-section[b-i6apsv60a6] {
    margin-bottom: 20px;
}

.gender-selector[b-i6apsv60a6] {
    display: flex;
  align-items: center;
    justify-content: center;
 gap: 10px;
  margin-bottom: 15px;
}

.gender-selector label[b-i6apsv60a6] {
    font-weight: bold;
    font-size: 1.1rem;
}

.gender-btn[b-i6apsv60a6] {
    padding: 8px 20px;
    border-radius: 20px;
    border: 2px solid #007bff;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.gender-btn:hover[b-i6apsv60a6] {
    transform: scale(1.05);
}

.button-container[b-i6apsv60a6] {
    display: inline-flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.button-container button[b-i6apsv60a6] {
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
  background-color: #ced7fd;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.button-container button:hover[b-i6apsv60a6] {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.range-selector[b-i6apsv60a6] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #007bff;
}

.range-selector label[b-i6apsv60a6] {
    font-weight: bold;
    font-size: 1rem;
    color: #333;
}

.range-dropdown[b-i6apsv60a6] {
    padding: 8px 15px;
    border-radius: 8px;
    border: 2px solid #007bff;
    background-color: white;
    font-size: 0.95rem;
 cursor: pointer;
transition: all 0.3s ease;
    min-width: 250px;
}

.range-dropdown:hover[b-i6apsv60a6] {
    border-color: #0056b3;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.2);
}

.range-dropdown:focus[b-i6apsv60a6] {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.active-btn[b-i6apsv60a6] {
    color: white !important;
    background-color: #007bff !important;
    font-weight: bold;
}

.inactive-btn[b-i6apsv60a6] {
    color: #666;
}

.chart-wrapper[b-i6apsv60a6] {
    position: relative;
    width: 100%;
    height: 600px;
    margin-bottom: 20px;
}

.chart-canvas[b-i6apsv60a6] {
    width: 100% !important;
  height: 100% !important;
    max-width: 100%;
}

/* Crosshair Styles */
.crosshair-container[b-i6apsv60a6] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
 pointer-events: none;
    z-index: 10;
}

.crosshair-line[b-i6apsv60a6] {
    position: absolute;
    display: none;
    pointer-events: none;
}

.vertical-line[b-i6apsv60a6] {
    width: 2px;
    height: 100%;
background: linear-gradient(to bottom, 
  rgba(255, 0, 0, 0),
        rgba(255, 0, 0, 0.7) 10%,
        rgba(255, 0, 0, 0.7) 90%,
        rgba(255, 0, 0, 0));
    box-shadow: 0 0 4px rgba(255, 0, 0, 0.5);
}

.horizontal-line[b-i6apsv60a6] {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right,
 rgba(255, 0, 0, 0),
   rgba(255, 0, 0, 0.7) 10%,
        rgba(255, 0, 0, 0.7) 90%,
rgba(255, 0, 0, 0));
    box-shadow: 0 0 4px rgba(255, 0, 0, 0.5);
}

.crosshair-tooltip[b-i6apsv60a6] {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #007bff;
    border-radius: 8px;
    padding: 12px;
    font-size: 0.9rem;
    display: none;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 20;
}

.tooltip-row[b-i6apsv60a6] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    gap: 15px;
}

.tooltip-row:last-child[b-i6apsv60a6] {
    margin-bottom: 0;
}

.tooltip-label[b-i6apsv60a6] {
    font-weight: bold;
    color: #333;
}

.tooltip-value[b-i6apsv60a6] {
    color: #007bff;
    font-weight: 600;
}

.percentile-info[b-i6apsv60a6] {
    padding-top: 8px;
    border-top: 1px solid #ddd;
  margin-top: 4px;
}

.percentile-info .tooltip-value[b-i6apsv60a6] {
    color: #28a745;
    font-weight: bold;
}

.instructions[b-i6apsv60a6] {
 background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 5px;
}

.instructions h4[b-i6apsv60a6] {
    margin-top: 0;
    margin-bottom: 10px;
    color: #007bff;
}

.instructions ul[b-i6apsv60a6] {
    margin: 0;
    padding-left: 20px;
}

.instructions li[b-i6apsv60a6] {
    margin-bottom: 8px;
    color: #555;
}

.no-data-message[b-i6apsv60a6] {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
}

.show-horizontal[b-i6apsv60a6] {
    display: none;
    text-align: center;
    padding: 10px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
  border-radius: 5px;
    margin-top: 20px;
    color: #856404;
}

@media (max-width: 768px) {
    .show-horizontal[b-i6apsv60a6] {
        display: block;
    }

    .chart-wrapper[b-i6apsv60a6] {
  height: 400px;
    }

    .gender-selector[b-i6apsv60a6] {
  flex-direction: column;
        gap: 8px;
    }

 .button-container[b-i6apsv60a6] {
        gap: 5px;
    }

    .button-container button[b-i6apsv60a6] {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .range-selector[b-i6apsv60a6] {
   flex-direction: column;
  gap: 8px;
    }

    .range-dropdown[b-i6apsv60a6] {
 min-width: 100%;
    width: 100%;
    }

    .crosshair-tooltip[b-i6apsv60a6] {
      font-size: 0.8rem;
        padding: 8px;
        min-width: 150px;
    }

    .instructions[b-i6apsv60a6] {
   font-size: 0.9rem;
    padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .chart-container[b-i6apsv60a6] {
        width: 100%;
        padding: 10px;
  }

    .chart-wrapper[b-i6apsv60a6] {
        height: 350px;
    }

    .button-container button[b-i6apsv60a6] {
     padding: 6px 12px;
        font-size: 0.85rem;
}

    .range-selector[b-i6apsv60a6] {
        padding: 8px;
    }

    .range-selector label[b-i6apsv60a6] {
        font-size: 0.9rem;
    }

 .range-dropdown[b-i6apsv60a6] {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}
/* /Pages/MyPages/Lab.razor.rz.scp.css */
main[b-lxtp6ywr08] {
    display: flex;
    flex-direction: column;
    opacity: 1;
    background: white;
    overflow: auto;
    height: 100%;
    align-items: baseline;
    min-width: fit-content;
}

.header[b-lxtp6ywr08] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    border:solid;
    border-color: black;
    border-radius:10px;
}

.img-container[b-lxtp6ywr08] {
    display: flex;
    flex-direction: column;
    overflow: auto;
    align-self: center;
}

    .img-container img[b-lxtp6ywr08] {
        padding: 10px;
        border-style: groove;
        padding-bottom: 60px;
    }

.delete-container[b-lxtp6ywr08] {
}

    .delete-container i[b-lxtp6ywr08] {
        font-size: 3em;
        color: #ff0000cc;
        position: fixed;
        bottom: 50px;
        right: 50px;
        z-index: 1;
    }

        /**/

        .delete-container i:hover[b-lxtp6ywr08] {
            transform: rotate(-20deg);
            color: red;
            cursor: pointer;
        }
/* /Pages/MyPages/MergePt/MergePtPopup.razor.rz.scp.css */
.modal[b-0x3h8al2do] {
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-dialog[b-0x3h8al2do] {
    margin: 3rem auto;
}

.modal-content[b-0x3h8al2do] {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-header[b-0x3h8al2do] {
    background-color: #007bff;
    color: white;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
}

.modal-title[b-0x3h8al2do] {
    font-size: 1.5rem;
    font-weight: bold;
}

.btn-close[b-0x3h8al2do] {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.merge-info[b-0x3h8al2do], .merge-confirmation[b-0x3h8al2do] {
    padding: 1rem 0;
}

.search-container[b-0x3h8al2do] {
    margin: 1.5rem 0;
}

.selected-old-pt[b-0x3h8al2do] {
    animation: fadeIn-b-0x3h8al2do 0.3s ease-in;
}

@keyframes fadeIn-b-0x3h8al2do {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert[b-0x3h8al2do] {
    border-radius: 6px;
    padding: 1rem;
}

.modal-footer[b-0x3h8al2do] {
    border-top: 1px solid #dee2e6;
    padding: 1rem;
}

.btn[b-0x3h8al2do] {
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
}
/* /Pages/MyPages/Norms.razor.rz.scp.css */
main[b-in775eaj1p] {
    display: flex;
    flex-direction: row;
    flex-wrap:wrap;
}
.items-col-container[b-in775eaj1p] {
    display: flex;
    flex-direction: column;
    background-color: gainsboro;
    min-width: 20vw;
}
.items-col[b-in775eaj1p] {
    display: flex;
    width: 100%;
    white-space: nowrap;
    border-bottom:groove;
}

.content-col[b-in775eaj1p] {
    display: flex;
    width: 78%;
    flex-direction: column;
    height: 88vh;
    overflow: scroll;
    background-color: ghostwhite;
}
.list-group[b-in775eaj1p] {
    min-width: 20vw;
}
.list-group-item[b-in775eaj1p] {
    border: none;
    background-color: gainsboro;
}

.measure-container[b-in775eaj1p] {
    display: flex;
    flex-direction: row;
    border-bottom:groove;
    margin-bottom:10px;
    width:fit-content;
}

    .measure-container .key[b-in775eaj1p] {
        background-color: blue;
        color: white;
        width: 50%;
        max-width: 100%;
        min-width: max-content;
        border-radius: 10px;
        padding: 5px;
    }

    .measure-container .value[b-in775eaj1p] {
        padding: 5px;
        width: 50%;
        max-width: 100%;
        min-width: max-content;
    }

@media (max-width: 767px) {
    main[b-in775eaj1p] {
        display: flex;
        flex-direction: column;
    }
    .content-col[b-in775eaj1p] {
        display: flex;
        flex-direction: column;
        overflow: scroll;
        width:100%;
    }
    .list-group[b-in775eaj1p] {
        min-width: 100vw;
    }
    .measure-container[b-in775eaj1p] {
        display: flex;
        flex-direction: row;
        border-bottom: groove;
        margin-bottom: 10px;
        width: 93vw;
    }

        .measure-container .key[b-in775eaj1p] {
            background-color: blue;
            color: white;
            width: max-content;
            border-radius: 10px;
            padding: 5px;
            width: 50%;
            max-width: 100%;
            min-width: auto;
        }

        .measure-container .value[b-in775eaj1p] {
            padding: 5px;
            width: auto;
        }

}
/* /Pages/MyPages/Prescription.razor.rz.scp.css */
body[b-4g13iv87c8] {
    display: flex;
    flex-direction: column;
    opacity: 1;
    height: 100vh;
    overflow: auto;
}

.close-section[b-4g13iv87c8] {
    display: inline-flex;
    justify-content: space-around;
    position: sticky;
    top: 0px;
    background-color: blue;
    z-index: 1000;
}

    .close-section div[b-4g13iv87c8] {
        cursor: pointer;
        color: white;
    }

.Saved-prescriptions-container[b-4g13iv87c8] {
    display: inline-flex;
    border: groove;
    border-radius: 20px;
    background-color: #d6fdd666;
}

    .Saved-prescriptions-container .button-container[b-4g13iv87c8] {
        display: inline-flex;
        width: 70%;
        flex-wrap: wrap;
    }
    .Saved-prescriptions-container .tempalte[b-4g13iv87c8] {
        display: flex;
        flex-direction: row;
        width: 30%;
        justify-content: space-between;
        align-items: center;
    }

        .Saved-prescriptions-container .tempalte button[b-4g13iv87c8] {
            white-space: nowrap;
            font-size: small;
        }
.button-container button[b-4g13iv87c8] {
    margin: 10px;
    border-radius: 10px;
    position: relative;
    width:max-content;
    height:min-content;
}

    .button-container button i[b-4g13iv87c8] {
        display: none;
    }

    .button-container button:hover i[b-4g13iv87c8] {
        display: inline-block;
        position: absolute;
        top: -15px;
        color: red;
    }
.preview[b-4g13iv87c8]{
    display:flex;
    flex-direction:row;
}
    .preview .drug-table[b-4g13iv87c8] {
        width:50%;
    }
    .preview .print-preview[b-4g13iv87c8] {
        width: 50%;
    }

.drug-tempalte-container[b-4g13iv87c8] {
    display: inline-flex;
}

    .drug-tempalte-container .drug-container[b-4g13iv87c8] {
        display: flex;
        flex-direction: column;
        width: 80%;
        justify-content: space-between;
        z-index: 200;
    }



.select-drugs[b-4g13iv87c8] {
    display: flex;
    flex-direction: row;
}

    .select-drugs .Labels[b-4g13iv87c8] {
        display: flex;
        flex-direction: column;
        width: 20%;
    }

    .select-drugs .drug-text-boxes[b-4g13iv87c8] {
        width: 80%;
    }

.prescription-box[b-4g13iv87c8] {
    display: flex;
    flex-direction: row;
}

    .prescription-box label[b-4g13iv87c8] {
        width: 20%;
    }

    .prescription-box input[b-4g13iv87c8] {
        width: 80%;
    }

.prescription-row-container[b-4g13iv87c8] {
    display: flex;
    flex-direction: column;
}

    .prescription-row-container .prescription-txt[b-4g13iv87c8] {
        direction: rtl;
    }

    .prescription-row-container textarea[b-4g13iv87c8] {
        border: none;
    }

#myModal2[b-4g13iv87c8] {
    display: block;
    background-color: rgba(255,255,255,.9);
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

#myModal3[b-4g13iv87c8] {
    display: block;
    background-color: rgba(255,255,255,.9);
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

#close-icon2[b-4g13iv87c8] {
    margin-top: 0vh;
    margin-left: 45%;
    font-size: 40px;
    cursor: pointer;
}

#close-icon3[b-4g13iv87c8] {
    margin-top: 0vh;
    margin-left: 45%;
    font-size: 40px;
    cursor: pointer;
}
@media (max-width: 676px) {
    .select-drugs[b-4g13iv87c8] {
        display: flex;
        flex-direction: column;
    }
    .Saved-prescriptions-container .tempalte[b-4g13iv87c8] {
        display: flex;
        flex-direction: column;
        width: 30%;
        justify-content: space-between;
        align-items: center;
    }
    .preview[b-4g13iv87c8] {
        display: flex;
        flex-direction: column;
    }
        .preview .drug-table[b-4g13iv87c8] {
            width: 100%;
        }

        .preview .print-preview[b-4g13iv87c8] {
            width: 100%;
        }
}

    /*@media print {
    .dont-show {
        display: none;
    }

    #close-icon2 {
        display: none;
    }
}*/

    /* Show the button on the screen */
    /*@media screen {
    .dont-show {
        display: inline-block;
    }

    #myModal2 {
        width: 100%;
        overflow: auto;
    }
}*/
/* /Pages/MyPages/PrescriptionPreview.razor.rz.scp.css */
/*.print-content {
    margin-top: 5cm;*/ /* Adjust this value as needed */
/*font-size: xx-large;
}*/
body[b-h6gdzirwf8] {
    display: flex;
    flex-direction: column;
    align-content: center;
    overflow: auto;
}

.button[b-h6gdzirwf8] {
    width: 50px;
}

input[b-h6gdzirwf8] {
    width: 60px;
}

.selected-image[b-h6gdzirwf8] {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 148mm;
    /*position: absolute;*/
    top: 0;
}

    .selected-image .name[b-h6gdzirwf8] {
        position: absolute;
    }

    .selected-image .date[b-h6gdzirwf8] {
        position: absolute;
        background-color:white;
    }

.image-container[b-h6gdzirwf8] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: center;
}

    .image-container .input-name[b-h6gdzirwf8] {
        align-self: center;
    }

    .image-container .top-button-container[b-h6gdzirwf8] {
        align-self: center;
        padding: 15px;
        background: gainsboro;
        border-radius: 20px;
        display: flex;
    }

    .image-container .bottom-container[b-h6gdzirwf8] {
        align-self: center;
        padding: 15px;
        background: gainsboro;
        border-radius: 20px;
        display: flex;
    }

.image-side-buttons[b-h6gdzirwf8] {
    display: flex;
    flex-direction: row;
}

    .image-side-buttons .left-container[b-h6gdzirwf8] {
        padding: 15px;
        background: gainsboro;
        border-radius: 20px;
        text-align-last: right;
    }

    .image-side-buttons .left-button-container[b-h6gdzirwf8] {
        display: flex;
        flex-direction: row;
        height: fit-content;
    }

    .image-side-buttons .right-button-container[b-h6gdzirwf8] {
        display: flex;
        flex-direction: row;
        height: fit-content;
    }
/* Styles for the selected image */
.selected-image[b-h6gdzirwf8] {
    position: relative;
}

#PrescriptionImg[b-h6gdzirwf8] {
    width: 148mm;
}
.text-overlay[b-h6gdzirwf8] {
    position: absolute;
    top: 50px; /* Adjust the top position as needed */
    left: 10px; /* Adjust the left position as needed */
    color: black; /* Text color */
    font-size: 18px; /* Font size */
    z-index: 30;
    display: flex;
    flex-direction: column;
}

    .text-overlay .prescription[b-h6gdzirwf8] {
        align-self: center;
    }


/* /Pages/MyPages/PrescriptionPrint.razor.rz.scp.css */
/*.print-content {
    margin-top: 5cm;*/ /* Adjust this value as needed */
/*font-size: xx-large;
}*/
body[b-uv7b3v2bt0] {
    display: flex;
    flex-direction: column;
    align-content: center;
    overflow: auto;
    backface-visibility: visible;
    align-items: center;
}

.button[b-uv7b3v2bt0] {
    width: 50px;
}

input[b-uv7b3v2bt0] {
    width: 60px;
}

.selected-image[b-uv7b3v2bt0] {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 210mm;
    /*position: absolute;*/
    top: 0;
}
    .selected-image .background[b-uv7b3v2bt0] {
        background-color: white;
    }
    .selected-image .name[b-uv7b3v2bt0] {
        position: absolute;
    }

    .selected-image .date[b-uv7b3v2bt0] {
        position: absolute;
        background-color:white;
    }

.image-container[b-uv7b3v2bt0] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: center;
}

    .image-container .input-name[b-uv7b3v2bt0] {
        align-self: center;
    }

    .image-container .top-button-container[b-uv7b3v2bt0] {
        align-self: center;
        padding: 15px;
        background: gainsboro;
        border-radius: 20px;
        display: flex;
    }

    .image-container .bottom-container[b-uv7b3v2bt0] {
        align-self: center;
        padding: 15px;
        background: gainsboro;
        border-radius: 20px;
        display: flex;
    }

.image-side-buttons[b-uv7b3v2bt0] {
    display: flex;
    flex-direction: row;
}

    .image-side-buttons .left-container[b-uv7b3v2bt0] {
        padding: 15px;
        background: gainsboro;
        border-radius: 20px;
        text-align-last: right;
    }

    .image-side-buttons .left-button-container[b-uv7b3v2bt0] {
        display: flex;
        flex-direction: row;
        height: fit-content;
    }

    .image-side-buttons .right-button-container[b-uv7b3v2bt0] {
        display: flex;
        flex-direction: row;
        height: fit-content;
    }
/* Styles for the selected image */
.selected-image[b-uv7b3v2bt0] {
    position: relative;
}

/* Styles for the text overlay */
.text-overlay[b-uv7b3v2bt0] {
    position: absolute;
    top: 50px; /* Adjust the top position as needed */
    left: 10px; /* Adjust the left position as needed */
    color: black; /* Text color */
    font-size: 18px; /* Font size */
    z-index: 30;
    display: flex;
    flex-direction: column;
}

    .text-overlay .prescription[b-uv7b3v2bt0] {
        align-self: center;
    }


@media print {
    

    
    .selected-image[b-uv7b3v2bt0] {
        position: fixed;
        
        overflow: auto;
        left: 0px;
        top: 0px;
        margin: 0px;
    }
    

}
/* Show the button on the screen */
/*@media screen {
    .dont-show {
        display: inline-block;
    }
}*/
/* /Pages/MyPages/PtData.razor.rz.scp.css */
.ptdata-table[b-3qdam8jp8u] {
    display: inline-grid;
    width: 100%;
    box-shadow: 0px 0 7px 2px #2626c8;
    grid-template-columns: repeat(11,auto);
    overflow: auto;
    max-height: 75px;
    font-size:16px;
}

.ptdata-table-row[b-3qdam8jp8u] {
    color: #005868;
    background-color: white;
    padding: 1px;
    border-style: solid;
    border-color: #005868;
    border-radius: 2px;
}

    .ptdata-table-row .label[b-3qdam8jp8u] {
        color: white;
        background-color: #005868;
        /*        font-size: small;*/
    }

    .ptdata-table-row .data[b-3qdam8jp8u] {
        white-space: pre-wrap;
        max-height: 150px;
        overflow-y: auto;
    }


.red-flag[b-3qdam8jp8u] {
    animation: flash-b-3qdam8jp8u 2s linear infinite alternate;
    color: white;
}

@keyframes flash-b-3qdam8jp8u {
    0% {
        background-color: red;
        color: white;
    }

    50% {
        background-color: white;
        color: red;
    }

    100% {
        background-color: red;
        color: white;
    }
}

#myModal2[b-3qdam8jp8u] {
    display: block;
    background-color: rgba(255,255,255,.9);
}

#close-icon2[b-3qdam8jp8u] {
    margin-top: 0vh;
    margin-left: 45%;
    font-size: 80px;
    cursor: pointer;
}

@media (max-width: 767px) {
    .ptdata-table[b-3qdam8jp8u] {
        grid-template-columns: repeat(3,1fr);
        max-height: 150px;

    }
}
/* /Pages/MyPages/Reports/ClinicSurvey.razor.rz.scp.css */
.mean[b-nylc8ardof] {
    border: inset;
    border-radius: 20px;
    margin: 10px;
    position:relative;
}
.title[b-nylc8ardof] {
    text-align: center;
}
.print-icon[b-nylc8ardof] {
    position: absolute;
    font-size: 36px;
    color: green;
    top: 10px;
    right: 10px;
}
#myModal[b-nylc8ardof] {
    display: block;
    background-color: white;
}


#close-icon[b-nylc8ardof] {
    margin-left: 45%;
    font-size: 40px;
    cursor: pointer;
}
@media print{
    #close-icon[b-nylc8ardof] {
        display:none;
    }
}
/* /Pages/MyPages/Reports/DocMonthSurvey.razor.rz.scp.css */
.mean[b-qsuvp652zt] {
    border: inset;
    border-radius: 20px;
    margin: 10px;
}
.title[b-qsuvp652zt] {
    text-align: center;
}
/* /Pages/MyPages/Reports/MonthReport.razor.rz.scp.css */
.header-div[b-3zcgw4gnwn] {
    display: flex;
    flex-direction: row;
}

    .header-div .form-group[b-3zcgw4gnwn] {
        /*flex-basis: 46%;*/
        width: stretch;
        display: inline-flex;
        flex-direction: row;
        justify-content: center;
    }

.button-container[b-3zcgw4gnwn] {
    display: flex;
    flex-flow: wrap;
}

.btn-primary[b-3zcgw4gnwn] {
    background-color: green;
}

.small-container[b-3zcgw4gnwn] {
    display: inline-flex;
    flex-wrap: wrap;
    width:100%;
}

    .small-container .small[b-3zcgw4gnwn] {
        width: 50%;
    }

.large[b-3zcgw4gnwn] {
    text-align: center;
    font-size: x-large;
}
@media (max-width: 676px) {
    .small-container .small[b-3zcgw4gnwn] {
        width: 90vw;
    }
    .header-div[b-3zcgw4gnwn] {
        display: flex;
        flex-direction: column;
    }
}
/* /Pages/MyPages/Reports/MySurveys.razor.rz.scp.css */
.header-div[b-noahth4ua6] {
    display: flex;
    flex-direction: row;
}

    .header-div .form-group[b-noahth4ua6] {
        /*flex-basis: 46%;*/
        width: stretch;
        display: inline-flex;
        flex-direction: row;
        justify-content: center;
    }

.button-container[b-noahth4ua6] {
    display: flex;
    flex-flow: wrap;
}

.btn-primary[b-noahth4ua6] {
    background-color: green;
}

.small-container[b-noahth4ua6] {
    display: inline-flex;
    flex-wrap: wrap;
}

    .small-container .small[b-noahth4ua6] {
        width: 50%;
    }

.large[b-noahth4ua6] {
    text-align: center;
    font-size: x-large;
}
@media (max-width: 676px) {
    .small-container .small[b-noahth4ua6] {
        width: 90vw;
    }
    .header-div[b-noahth4ua6] {
        display: flex;
        flex-direction: column;
    }
}
/* /Pages/MyPages/Reports/Surveys.razor.rz.scp.css */
/* ===== HEADER SECTION ===== */
.header-div[b-g949ufber7] {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
/*    margin-bottom: 1.5rem;*/
    align-items: center;
    flex-wrap: wrap;
}

    .header-div .form-group[b-g949ufber7] {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        min-width: 180px;
        flex: 1 1 auto;
    }

        .header-div .form-group label[b-g949ufber7] {
            color: #ffffff;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .header-div .form-group input[type="date"][b-g949ufber7] {
            padding: 0.6rem 1rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.95);
            font-size: 0.95rem;
            transition: all 0.3s ease;
            text-align: center;
        }

            .header-div .form-group input[type="date"]:focus[b-g949ufber7] {
                outline: none;
                border-color: #ffffff;
                background-color: #ffffff;
                box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
            }

        /* Doctor Dropdown Styling */
        .header-div .form-group .doctor-select[b-g949ufber7] {
            padding: 0.6rem 1rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.95);
            font-size: 0.95rem;
            font-weight: 500;
            color: #2d3436;
            transition: all 0.3s ease;
            cursor: pointer;
/*            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");*/
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
            background-size: 12px;
            padding-right: 2.5rem;
            appearance: none;
            height: auto;
            font-size: 20px;
            direction: rtl;
        }
        }

            .header-div .form-group .doctor-select:hover[b-g949ufber7] {
                border-color: rgba(255, 255, 255, 0.6);
                background-color: #ffffff;
            }

            .header-div .form-group .doctor-select:focus[b-g949ufber7] {
                outline: none;
                border-color: #ffffff;
                background-color: #ffffff;
                box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
            }

            .header-div .form-group .doctor-select option[b-g949ufber7] {
                background-color: #ffffff;
                color: #2d3436;
                padding: 0.5rem;
            }

                .header-div .form-group .doctor-select option:first-child[b-g949ufber7] {
                    color: #6c757d;
                    font-style: italic;
                }

    .header-div .form-check-group[b-g949ufber7] {
        display: flex;
        flex-direction: column;
        gap: 3px;
        background-color: rgba(255, 255, 255, 0.15);
        padding: 1rem;
        border-radius: 8px;
        backdrop-filter: blur(10px);
        min-width: 150px;
    }

        .header-div .form-check-group .form-check[b-g949ufber7] {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

            .header-div .form-check-group .form-check label[b-g949ufber7] {
                color: #ffffff;
                font-weight: 500;
                margin: 0;
                cursor: pointer;
                user-select: none;
            }

            .header-div .form-check-group .form-check input[type="radio"][b-g949ufber7] {
                cursor: pointer;
                width: 18px;
                height: 18px;
                accent-color: #ffffff;
            }

/* ===== DATA CONTAINER ===== */
.data-div[b-g949ufber7] {
    display: flex;
    direction: rtl;
    width: 100%;
    gap: 1.5rem;
    height: calc(88vh - 180px);
}

    .data-div .doctor-info[b-g949ufber7] {
        display: flex;
        flex-direction: column;
        width: 28%;
        height: 100%;
        overflow: auto;
        background-color: #ffffff;
        border-radius: 12px;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        gap: 0.75rem;
    }

        /* Custom Scrollbar */
        .data-div .doctor-info[b-g949ufber7]::-webkit-scrollbar {
            width: 8px;
        }

        .data-div .doctor-info[b-g949ufber7]::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .data-div .doctor-info[b-g949ufber7]::-webkit-scrollbar-thumb {
            background: #667eea;
            border-radius: 10px;
        }

            .data-div .doctor-info[b-g949ufber7]::-webkit-scrollbar-thumb:hover {
                background: #5568d3;
            }

        .data-div .doctor-info .pt-count[b-g949ufber7] {
            text-align: center;
            color: #ffffff;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 0.75rem 1rem;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
            letter-spacing: 0.5px;
            position: sticky;
            top: -1rem;
            z-index: 10;
        }

        .data-div .doctor-info .doctor-info-row[b-g949ufber7] {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            justify-content: space-between;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            direction: rtl;
            padding: 0.75rem;
            background-color: #ffffff;
            transition: all 0.3s ease;
            cursor: pointer;
        }

            .data-div .doctor-info .doctor-info-row:hover[b-g949ufber7] {
                border-color: #667eea;
                box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
                transform: translateX(-3px);
            }

        .data-div .doctor-info .selected[b-g949ufber7] {
            background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
            color: #2d3436;
            font-weight: 700;
            border-color: #fdcb6e;
            box-shadow: 0 4px 15px rgba(253, 203, 110, 0.4);
        }

            .data-div .doctor-info .selected:hover[b-g949ufber7] {
                transform: translateX(-3px);
                box-shadow: 0 6px 20px rgba(253, 203, 110, 0.5);
            }

        .data-div .doctor-info .doctor-info-row .doctor-name[b-g949ufber7] {
            width: 75%;
            border-left: 2px solid #e9ecef;
            padding-left: 0.75rem;
            font-size: 1rem;
            direction: rtl;
            align-self: center;
            display: flex;
            text-align: right;
            font-weight: 600 !important;
            color: #2d3436;
            font-size: 20px !important;
        }

        .data-div .doctor-info .selected .doctor-name[b-g949ufber7] {
            border-left-color: rgba(0, 0, 0, 0.1);
        }

        .data-div .doctor-info .doctor-info-row .count[b-g949ufber7] {
            width: 25%;
            margin: auto;
            font-size: 1.25rem;
            font-weight: 700;
            direction: rtl;
            text-align: center;
            color: #667eea;
        }

        .data-div .doctor-info .selected .count[b-g949ufber7] {
            color: #d63031;
        }

    .data-div .exam-container[b-g949ufber7] {
        direction: ltr;
        display: flex;
        width: 72%;
        height: 100%;
        overflow: auto;
        flex-direction: column;
        background-color: #ffffff;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        gap: 1rem;
    }

        /* Custom Scrollbar */
        .data-div .exam-container[b-g949ufber7]::-webkit-scrollbar {
            width: 10px;
        }

        .data-div .exam-container[b-g949ufber7]::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .data-div .exam-container[b-g949ufber7]::-webkit-scrollbar-thumb {
            background: #667eea;
            border-radius: 10px;
        }

            .data-div .exam-container[b-g949ufber7]::-webkit-scrollbar-thumb:hover {
                background: #5568d3;
            }

        .data-div .exam-container .pt-data-div[b-g949ufber7] {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 1rem;
            border: 2px solid #e9ecef;
        }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .data-div[b-g949ufber7] {
        flex-direction: column;
        height: auto;
    }

        .data-div .doctor-info[b-g949ufber7] {
            width: 100%;
            height: 40vh;
        }

        .data-div .exam-container[b-g949ufber7] {
            width: 100%;
            height: 60vh;
        }
}

@media (max-width: 768px) {
    .header-div[b-g949ufber7] {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

        .header-div .form-group[b-g949ufber7] {
            width: 100%;
            min-width: unset;
        }

        .header-div .form-check-group[b-g949ufber7] {
            width: 100%;
        }
}

@media (max-width: 676px) {
    .header-div[b-g949ufber7] {
        padding: 0.75rem;
    }

    .data-div[b-g949ufber7] {
        gap: 1rem;
    }

        .data-div .doctor-info .doctor-info-row[b-g949ufber7] {
            flex-direction: column;
            gap: 0.5rem;
        }

            .data-div .doctor-info .doctor-info-row .doctor-name[b-g949ufber7] {
                width: 100%;
                border-left: none;
                border-bottom: 2px solid #e9ecef;
                padding-left: 0;
                padding-bottom: 0.5rem;
                text-align: center;
                justify-content: center;
            }

            .data-div .doctor-info .doctor-info-row .count[b-g949ufber7] {
                width: 100%;
                padding-top: 0.5rem;
            }

        .data-div .doctor-info .selected .doctor-name[b-g949ufber7] {
            border-bottom-color: rgba(0, 0, 0, 0.1);
        }

        .data-div .exam-container[b-g949ufber7] {
            padding: 1rem;
        }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn-b-g949ufber7 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.doctor-info-row[b-g949ufber7] {
    animation: fadeIn-b-g949ufber7 0.3s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.mr-2[b-g949ufber7] {
    margin-right: 0.5rem;
}

.mb-2[b-g949ufber7] {
    margin-bottom: 0.5rem;
}
/* /Pages/MyPages/Reservations/ClinicManagerRow.razor.rz.scp.css */

.active-clinic[b-uds2jztfwy] {
    display: flex; /* Use flexbox */
    flex-direction: row; /* Stack elements vertically */
    /*justify-content: space-between;*/ /* Distribute elements vertically */
    align-items: center; /* Center elements horizontally */
    border: 1px solid #000; /* Border style */
    padding: 10px; /* Add some padding to create space between the border and content */
    background-color: #f0f0f0; /* Background color */
    border-radius: 10px;
    margin: 10px;
}

    .active-clinic .first-row[b-uds2jztfwy] {
        display: flex;
        flex-direction: row;
        width: 50%;
        justify-content: space-between;
    }

    .active-clinic .second-row[b-uds2jztfwy] {
        display: flex;
        flex-direction: row;
        width: 50%;
        justify-content: space-between;
    }

    .active-clinic input[b-uds2jztfwy] {
        width: 50px;
    }

button[b-uds2jztfwy] {
    border-radius: 5px;
}
/* CSS styles for active-clinic-id class */
.active-clinic-id[b-uds2jztfwy] {
    color: #333; /* Text color */
    font-size: 18px; /* Increase font size */
    font-weight: bold; /* Make the text bold */
    width: 10%;
    text-align: right;
}

/* CSS styles for active-clinic-DoctorName class */
.active-clinic-DoctorName[b-uds2jztfwy] {
    color: #555; /* Text color */
    font-size: 18px; /* Increase font size */
    margin-top: 5px; /* Add some top margin */
    width: 20%;
    text-align: center;
}

/* CSS styles for active-clinic-Shift class */
.active-clinic-Shift[b-uds2jztfwy] {
    color: #777; /* Text color */
    font-size: 18px; /* Increase font size */
    margin-top: 5px; /* Add some top margin */
    width: 20%;
    text-align: center;
}

.active-clinic-Status[b-uds2jztfwy] {
    color: #777; /* Text color */
    font-size: 18px; /* Increase font size */
    margin-top: 5px; /* Add some top margin */
    width: 20%;
    text-align: center;
    cursor: pointer;
    position: relative;
}

    .active-clinic-Status .change-status[b-uds2jztfwy] {
        position: absolute;
        top: -35px;
        right: 30%;
        /*transform: translate(-50%, -50%);*/ /* Center the icon horizontally */
        display: none; /* Hide the icon by default */
        border: groove;
        border-radius: 10px;
        padding: 2px;
        background-color: lightsalmon;
        color: white;
    }

    .active-clinic-Status:hover .change-status[b-uds2jztfwy] {
        display: block; /* Show the icon on hover */
    }

@media (max-width: 676px) {
    .active-clinic[b-uds2jztfwy] {
        flex-direction:column;
        font-size:large;
    }
        .active-clinic .first-row[b-uds2jztfwy] {
            display: flex;
            flex-direction: row;
            width: 100%;
            justify-content: space-between;
        }

        .active-clinic .second-row[b-uds2jztfwy] {
            display: flex;
            flex-direction: row;
            width: 100%;
            justify-content: space-between;
        }
    .active-clinic-id[b-uds2jztfwy] {
        color: #333; /* Text color */
        font-size: 18px; /* Increase font size */
        font-weight: bold; /* Make the text bold */
        min-width:max-content;
        text-align: right;
    }

    /* CSS styles for active-clinic-DoctorName class */
    .active-clinic-DoctorName[b-uds2jztfwy] {
        color: #555; /* Text color */
        font-size: 18px; /* Increase font size */
        margin-top: 5px; /* Add some top margin */
        width: 20%;
        text-align: center;
        min-width: max-content;
    }

    /* CSS styles for active-clinic-Shift class */
    .active-clinic-Shift[b-uds2jztfwy] {
        color: #777; /* Text color */
        font-size: 18px; /* Increase font size */
        margin-top: 5px; /* Add some top margin */
        width: 20%;
        text-align: center;
    }
    .active-clinic-Status[b-uds2jztfwy] {
        color: #777; /* Text color */
        font-size: 18px; /* Increase font size */
        margin-top: 5px; /* Add some top margin */
        min-width:max-content;
        text-align: center;
        cursor: pointer;
        position: relative;
    }
}
/* /Pages/MyPages/Reservations/ClinicsManager.razor.rz.scp.css */
main[b-yjnyuyie84]{
    direction:rtl;
}
.active-clinics-container[b-yjnyuyie84] {
    display: flex;
    flex-direction: column;
    overflow: auto;
    height: 85vh;
}
.add-clinic-container[b-yjnyuyie84]{
    text-align:center;
}
@media (max-width: 676px) {
    
    }
/* /Pages/MyPages/Reservations/ClinicsReservations.razor.rz.scp.css */
main[b-tk7qhay20y] {
    direction: rtl;
}

.ribbon[b-tk7qhay20y] {
    display: flex;
    place-content: space-between;
    background-color: cadetblue;
    font-size: x-large;
    padding: 6px;
    border-radius: 18px;
    margin-right: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
}
    .ribbon button[b-tk7qhay20y] {
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        background-color: white;
        border-radius: 25px;
    }
.ribbon i[b-tk7qhay20y] {
    color: limegreen;
    font-size: 34px;
}

.grid-container[b-tk7qhay20y] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    height: 100%;
    width: 100%;
}

.component[b-tk7qhay20y] {
    padding: 10px;
    background-color: lightgray;
}
.dialoge-container[b-tk7qhay20y] {
/*    overflow: auto;*/
    height: inherit;
}
#myModal[b-tk7qhay20y] {
    display: block;
    background-color: white;
}


#close-icon[b-tk7qhay20y] {
    margin-left: 45%;
    font-size: 40px;
    cursor: pointer;
}
@media (max-width: 676px) {
    .ribbon[b-tk7qhay20y]{
        font-size:large;
    }
}
/* /Pages/MyPages/Reservations/PrintSingelClinicReservation.razor.rz.scp.css */
main[b-2i1tne8azn]{
    overflow:auto;
    height:90vh;
}
.print-clinic-icon[b-2i1tne8azn] {
    color: green;
    font-size:40px;
}
.print-btn[b-2i1tne8azn] {
    background-color: #ddf5dd;
    color: #227d22;
    border-radius: 10px;
    border: groove;
}
.clinics-column[b-2i1tne8azn] {
    overflow: auto;
    width: 100%;
    /*height: 100vh;*/
    direction: rtl;
    flex: auto;
    display: flex;
    flex-direction: column;
    text-align: right;
}

.master-clinic-container[b-2i1tne8azn] {
    text-align: center;
    position: relative;
    border-style: solid;
    border-radius: 10px;
    direction:rtl;
}

    .master-clinic-container .clinic-info[b-2i1tne8azn] {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        font-size: x-large;
    }
    .master-clinic-container .clinic-sub-info[b-2i1tne8azn] {
        display: flex;
        flex-direction: row;
        justify-content: space-around;

    }
.master-clinic-container .clinic-info .clinic-id[b-2i1tne8azn]{
    font-size:small;
}

.clinic-details-div[b-2i1tne8azn] {
    display: flex;
    justify-content: space-between;
}

.type-div[b-2i1tne8azn] {
    text-align: center;
    font-size: larger;
    border-bottom: solid;
}

    .type-div button[b-2i1tne8azn] {
        border-bottom: none;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        padding-left: 25px;
        padding-right: 25px;
    }

.clinic-details-number[b-2i1tne8azn] {
    width: 7%;
    display: flex;
    vertical-align: middle;
    text-align: center;
    border-radius: 50%;
    align-self: center;
    align-content: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    border-left: groove;
    padding-left: 5px;
}

    .clinic-details-number i[b-2i1tne8azn] {
        display: none;
    }



.clinic-details-name[b-2i1tne8azn] {
    width: 58%;
    /*border-left: inset;
    border-left-color: snow;
    border-right: inset;*/
    font-size: larger;
    direction: rtl;
    align-self: center;
    display: flex;
}

.clinic-details-date[b-2i1tne8azn] {
    width: 27%;
    position: relative;
    font-size: small;
    display: grid;
    direction: rtl;
    text-align: center;
}

.patient-list[b-2i1tne8azn] {
    direction: rtl;
    display: flex;
    flex-wrap: wrap;
    margin-top: 5px;
}

.right-column[b-2i1tne8azn] {
    width: 50%;
    text-align: right;
    border-left: solid;
    
}

.left-column[b-2i1tne8azn] {
    width: 50%;
    text-align: left;
}

.sum-div[b-2i1tne8azn] {
    text-align: center;
    font-size: x-large;
    border-top: solid;
}

#sum-btn[b-2i1tne8azn] {
    border-top: none;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

#myModal[b-2i1tne8azn] {
    display: block;
    background-color: white;
}


#close-icon[b-2i1tne8azn] {
    margin-left: 45%;
    font-size: 40px;
    cursor: pointer;
}
@media print{
    .no-print[b-2i1tne8azn] {
        display: none;
    } 
}
/* /Pages/MyPages/Reservations/SingelClinicReservation.razor.rz.scp.css */
.clinics-column[b-9xonwaj9fo] {
    overflow: auto;
    width: 100%;
    height: 66vh;
    direction: rtl;
    flex: auto;
    display: flex;
    flex-direction: column;
    text-align: right;
    padding-bottom: 100px;
}

.master-clinic-container[b-9xonwaj9fo] {
    text-align: center;
    position: relative;
}

    .master-clinic-container button[b-9xonwaj9fo] {
        border-radius: 15px;
        background-color: blue;
        color: white;
        margin-bottom: 10px;
    }

    .master-clinic-container .clinic-info[b-9xonwaj9fo] {
        font-size: x-large;
    }

        .master-clinic-container .clinic-info .clinic-no[b-9xonwaj9fo] {
            border: groove;
            border-radius: 25px;
            width: 50px;
            background-color: darkolivegreen;
            color: white;
        }

    .master-clinic-container i[b-9xonwaj9fo] {
        position: absolute;
        top: -20px;
        display: none;
        color: #ff0000a6; /* Hide the icon by default */
        font-size: 35px;
        cursor:pointer;
    }

.master-clinic-container .print-clinic-icon[b-9xonwaj9fo] {
    left: 20px;
    color: green;
}
    .master-clinic-container:hover i[b-9xonwaj9fo] {
        display: block;
    }

.clinic-details-div[b-9xonwaj9fo] {
    display: flex;
    justify-content: space-between;
    border-style: groove;
    border-radius: 10px
}



.clinic-details-number[b-9xonwaj9fo] {
    width: 7%;
    display: flex;
    vertical-align: middle;
    text-align: center;
    border-radius: 50%;
    align-self: center;
    align-content: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

    .clinic-details-number i[b-9xonwaj9fo] {
        display: none;
    }

.clinic-details-div:hover i[b-9xonwaj9fo] {
    display: block;
}

.clinic-details-div-selected:hover i[b-9xonwaj9fo] {
    display: block;
}

.clinic-details-name[b-9xonwaj9fo] {
    width: 58%;
    border-left: inset;
    border-left-color: snow;
    border-right: inset;
    font-size: larger;
    direction: rtl;
    align-self: center;
    display: flex;
}

.clinic-details-date[b-9xonwaj9fo] {
    width: 27%;
    position: relative;
    font-size: small;
    display: grid;
    direction: rtl;
    text-align: center;
}

.clinic-info[b-9xonwaj9fo] {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    border-style: groove;
    border-radius: 10px
}
.dialoge-container[b-9xonwaj9fo] {
    overflow: auto;
    height: inherit;
}

#myModal[b-9xonwaj9fo] {
    display: block;
    background-color: white;
}


#close-icon[b-9xonwaj9fo] {
    margin-left: 45%;
    font-size: 40px;
    cursor: pointer;
}
@media print {
    .no-print[b-9xonwaj9fo] {
        display: none;
    }
}
/* /Pages/MyPages/SearchNames.razor.rz.scp.css */
[b-1nps10qpfo] .blazored-typeahead__result {
    text-align:right;
}
[b-1nps10qpfo] .blazored-typeahead__active-item {
/*  background-color: white;
 border:none;
    color:black;*/
}
    .selected-item[b-1nps10qpfo] {
     display: grid;
    grid-template-columns: 1fr 1fr;
    }
.mobile[b-1nps10qpfo]{
 color:blue;
}

.search-container-wrapper[b-1nps10qpfo] {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 0 20px;
    align-items: center;
    background: #e1e6ed;
    border-radius: 10px;
    margin: 0 10px;
    padding-inline-start: 0px;
}

.checkbox-container[b-1nps10qpfo] {
    display: flex;
    align-items: center;
    gap: 8px;
 direction: rtl;
}

.checkbox-container input[type="checkbox"][b-1nps10qpfo] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

    .checkbox-container label[b-1nps10qpfo] {
     cursor: pointer;
        margin: 0;
   font-size: 14px;
        width: max-content;
    }

[b-1nps10qpfo] .blazored-typeahead__results {
    max-height: 400px !important;
}

.loading-spinner[b-1nps10qpfo] {
    display: flex;
 align-items: center;
    justify-content: center;
}

.spinner[b-1nps10qpfo] {
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
  border-radius: 50%;
    animation: spin-b-1nps10qpfo 1s linear infinite;
}

@keyframes spin-b-1nps10qpfo {
    0% {
     transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}
/* /Pages/MyPages/SearchPt.razor.rz.scp.css */
.add-exam[b-b7fx7c7m3y] {
    position: fixed;
    bottom: 0;
}
.search-container[b-b7fx7c7m3y] {
    position: sticky;
    top: 1px;
    z-index: 3;
    background: white;
}
.show[b-b7fx7c7m3y] {
    display:flex;
    flex-direction:column;
    background:white;
}
.modal-header[b-b7fx7c7m3y] {
    text-align: right;
    margin-right: 25px;
    margin-top: 10px;
}
.modal-header i[b-b7fx7c7m3y]{
    font-size:30px;
}
.active-clinics-buttons[b-b7fx7c7m3y] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    justify-content: center;
}

.active-clinics-buttons button[b-b7fx7c7m3y] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.active-clinics-buttons button:hover[b-b7fx7c7m3y] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.active-clinics-buttons button:active[b-b7fx7c7m3y] {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
/* /Pages/MyPages/SuperAdminPage.razor.rz.scp.css */
.roles-container[b-5m93peuwma] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.roles-container h4[b-5m93peuwma] {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
}

.role-checkbox[b-5m93peuwma] {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .role-checkbox input[type="checkbox"][b-5m93peuwma] {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .role-checkbox label[b-5m93peuwma] {
        cursor: pointer;
        font-size: 16px;
        margin: 0;
    }

.alert[b-5m93peuwma] {
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 5px;
    border: 1px solid transparent;
}

.alert-info[b-5m93peuwma] {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

    .alert-info strong[b-5m93peuwma] {
        font-weight: 600;
    }

.clinic-info-section[b-5m93peuwma] {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
}

    .clinic-info-section h4[b-5m93peuwma] {
    margin: 0 0 15px 0;
   color: #333;
 font-size: 16px;
    }

.form-group[b-5m93peuwma] {
margin-bottom: 15px;
}

    .form-group label[b-5m93peuwma] {
        display: block;
        margin-bottom: 5px;
      font-weight: 600;
        color: #555;
    }

    .form-group .form-control[b-5m93peuwma] {
        width: 100%;
        padding: 8px 12px;
    border: 1px solid #ced4da;
        border-radius: 4px;
        font-size: 14px;
        transition: border-color 0.15s ease-in-out;
    }

        .form-group .form-control:focus[b-5m93peuwma] {
            outline: none;
        border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

    .form-group .form-text[b-5m93peuwma] {
  display: block;
        margin-top: 5px;
        color: #6c757d;
  font-size: 12px;
    }
/* /Pages/MyPages/UpdatePtData.razor.rz.scp.css */
main[b-ok3t6giw68]{

}
.ptdata-table[b-ok3t6giw68] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.ptdata-table-row[b-ok3t6giw68] {
    display: inline-flex;
    width: 45%;
    margin: 10px;
    flex-grow: 1;
}
.label[b-ok3t6giw68] {
    width: 20%;
}
.input-data[b-ok3t6giw68] {
    width: 70%;
}
.ok-btn-div[b-ok3t6giw68]{
    display:flex;
}
.accept-btn[b-ok3t6giw68] {
    aspect-ratio: 1 / 1;
    width: 10%;
    border-radius: 30%;
    border: solid;
    background-color: blue;
    color: white;
    min-width:fit-content;
    max-width:15%;

}
@media (max-width: 767px) {
    .ptdata-table[b-ok3t6giw68] {
        height: 70vh;
        overflow: scroll;
    }
}
/* /Pages/MyPages/Vaccinations.razor.rz.scp.css */
.main[b-9dmmazxajg] {
    margin: 20px;
    padding: 20px;
    border-radius: 25px;
    opacity: 1;
    background-color: white;
}
.page-header[b-9dmmazxajg]{
    display:inline-flex;
    justify-content:space-evenly;
    width:100%;
}
    .page-header button[b-9dmmazxajg] {
        
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0px;
        gap: 10px;
        width: 34px;
        height: 34px;
        background: #FFFFFF;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        transform: rotate(-180deg);
       
    }
.category[b-9dmmazxajg] {
    width:100%;
    margin-bottom: 10px;
}
.category-header[b-9dmmazxajg] {
    margin-top: 5px;
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    cursor:pointer;
}

    .category button[b-9dmmazxajg] {        
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0px;
        gap: 10px;
        margin: 0 20px;
        width: 34px;
        height: 34px;
        background: #FFFFFF;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        transform: rotate(-180deg);
        /* Inside auto layout */
        flex: none;
        order: 1;
        flex-grow: 0;
    }

.header[b-9dmmazxajg], .vaccine-row[b-9dmmazxajg] {
    display: flex;
    padding: 10px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.header[b-9dmmazxajg] {
    font-weight: bold;
}

.header-item[b-9dmmazxajg], .vaccine-item[b-9dmmazxajg] {
    flex: 1;
    text-align: center;
}

    .header-item:first-child[b-9dmmazxajg], .vaccine-item:first-child[b-9dmmazxajg] {
        flex: 0 0 50px;
    }

    .vaccine-item input[type="checkbox"][b-9dmmazxajg] {
        margin: 0 auto;
    }

    .vaccine-item input[type="date"][b-9dmmazxajg] {
        width: auto;
        padding: 5px;
        box-sizing: border-box;
    }
/* /Shared/MainLayout.razor.rz.scp.css */
/* Main Layout Styling - Modern Medical Clinic Theme */

[b-oj1bttl7xu] app {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f8fafc;
}

[b-oj1bttl7xu] .main {
    flex: 1;
    background: #f8fafc;
}

[b-oj1bttl7xu] .content {
    padding-top: 1.25rem;
    padding-bottom: 2rem;
}

/* Sidebar Styling */
[b-oj1bttl7xu] .sidebar {
    background: linear-gradient(180deg, #0891b2 0%, #0e7490 60%, #155e75 100%);
    border-right: none;
    box-shadow: 2px 0 15px rgba(8, 145, 178, 0.2);
    min-height: 100vh;
    overflow-y: auto;
}

/* Sidebar Nav Link Font Colors */
[b-oj1bttl7xu] .sidebar .nav-link,
[b-oj1bttl7xu] .sidebar .nav-item a {
    color: #ffffff !important;
}

[b-oj1bttl7xu] .sidebar .nav-link:hover,
[b-oj1bttl7xu] .sidebar .nav-item a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15);
}

[b-oj1bttl7xu] .sidebar .oi,
[b-oj1bttl7xu] .sidebar .nav-link .oi {
    color: rgba(255, 255, 255, 0.9) !important;
}

[b-oj1bttl7xu] .sidebar .top-row {
    background: rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
}

/* Main Top Row */
[b-oj1bttl7xu] .main .top-row {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    border-bottom: none;
    justify-content: flex-end;
    box-shadow: 0 2px 12px rgba(8, 145, 178, 0.2);
    height: 3rem;
    padding: 0 1.5rem;
}

[b-oj1bttl7xu] .main .top-row > a,
[b-oj1bttl7xu] .main .top-row .btn-link {
    white-space: nowrap;
    margin-left: 1.25rem;
    color: #ffffff;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: background 0.2s ease;
}

[b-oj1bttl7xu] .main .top-row > a:hover,
[b-oj1bttl7xu] .main .top-row .btn-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

[b-oj1bttl7xu] .main .top-row a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
    [b-oj1bttl7xu] .main .top-row:not(.auth) {
        display: none;
        font-size: smaller;
    }

    [b-oj1bttl7xu] .main .top-row.auth {
        justify-content: space-between;
    }

    [b-oj1bttl7xu] .main .top-row a,
    [b-oj1bttl7xu] .main .top-row .btn-link {
        margin-left: 0;
    }

    [b-oj1bttl7xu] .main .top-row {
        display: grid;
    }

    [b-oj1bttl7xu] .sidebar {
        box-shadow: 0 2px 15px rgba(8, 145, 178, 0.25);
    }
}

@media (min-width: 768px) {
    [b-oj1bttl7xu] app {
        flex-direction: column;
    }

    [b-oj1bttl7xu] .sidebar {
        width: 250px;
    }
}

/* Scrollbar Styling */
[b-oj1bttl7xu] .sidebar::-webkit-scrollbar {
    width: 5px;
}

[b-oj1bttl7xu] .sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

[b-oj1bttl7xu] .sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

[b-oj1bttl7xu] .sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
/* /Shared/NavMenu.razor.rz.scp.css */
/* NavMenu Styling - Modern Medical Clinic Theme */

/* Top Navigation Bar */
.top-row[b-e1jsu12z1h] {
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    border-bottom: none;
    align-items: center;
    height: 3rem;
    padding: 0 1.25rem;
    box-shadow: 0 2px 12px rgba(8, 145, 178, 0.25);
}

/* Brand Logo/Title */
.navbar-brand[b-e1jsu12z1h] {
    font-size: 1.4rem;
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Navigation Icons */
.nav-item .oi[b-e1jsu12z1h] {
    width: 1.8rem;
    font-size: 1rem;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.9);
    margin-right: 0.5rem;
    transition: transform 0.2s ease;
}

/* Navigation Items */
.nav-item[b-e1jsu12z1h] {
    font-size: 0.9rem;
    padding: 0.2rem 0;
}

.nav-item:first-of-type[b-e1jsu12z1h] {
    padding-top: 1rem;
}

.nav-item:last-of-type[b-e1jsu12z1h] {
    padding-bottom: 1rem;
}

/* Navigation Links */
.nav-item a.nav-link[b-e1jsu12z1h] {
    color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 8px;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    line-height: 1.4;
    transition: all 0.25s ease;
    margin: 0.15rem 0.5rem;
    padding: 0.6rem 1rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    white-space: normal;
    word-wrap: break-word;
}

/* Active Navigation State */
.nav-item a.nav-link.active[b-e1jsu12z1h] {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff !important;
    font-weight: 600;
    border-left: 3px solid #67e8f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-item a.nav-link.active .oi[b-e1jsu12z1h] {
    color: #67e8f9;
}

/* Hover State */
.nav-item a.nav-link:hover[b-e1jsu12z1h] {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    padding-left: 1.25rem;
}

.nav-item a.nav-link:hover .oi[b-e1jsu12z1h] {
    transform: scale(1.1);
}

.nav-item a.nav-link.active:hover[b-e1jsu12z1h] {
    background: rgba(255, 255, 255, 0.22);
}

/* Mobile Toggle Button */
.navbar-toggler[b-e1jsu12z1h] {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    transition: all 0.2s ease;
}

.navbar-toggler:hover[b-e1jsu12z1h] {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler:focus[b-e1jsu12z1h] {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon[b-e1jsu12z1h] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.25rem;
    height: 1.25rem;
}

/* Top Row Links */
.top-row a[b-e1jsu12z1h],
.top-row .btn-link[b-e1jsu12z1h] {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.top-row a:hover[b-e1jsu12z1h],
.top-row .btn-link:hover[b-e1jsu12z1h] {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

/* Mobile Fixed Menu */
.fixed[b-e1jsu12z1h] {
    position: fixed;
    right: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #0891b2 0%, #0e7490 100%);
    z-index: 2000;
    box-shadow: -4px 0 20px rgba(8, 145, 178, 0.35);
    animation: slideIn-b-e1jsu12z1h 0.25s ease-out;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.fixed .nav-item a.nav-link[b-e1jsu12z1h] {
    padding: 0.75rem 1rem;
    margin: 0.2rem 0.75rem;
}

@keyframes slideIn-b-e1jsu12z1h {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Scrollbar */
.fixed[b-e1jsu12z1h]::-webkit-scrollbar {
    width: 5px;
}

.fixed[b-e1jsu12z1h]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.fixed[b-e1jsu12z1h]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.fixed[b-e1jsu12z1h]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
