﻿/* ===== GLOBAL RESET & NORMALIZATION ===== */
*,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
    overflow-y: hidden;
}

body {
    height: 100%;
    width: 100%;
    margin: 0;
    background-color: #2E3349;
    overflow: hidden;
    font-family: 'Californian FB';
    font-size: 10px;
    color: #C8C8C8;
}

:root {
    --field-h: 28px;
    --combo-w: 310px;
    --drop-max-h: 250px;
}

#content {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Californian FB';
    font-size: 10px;
}

#header {
    width: 100%;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: whitesmoke;
    background-color: #0070C0;
    border-bottom: 2px inset white;
    background-image: url('/images/HeadBanarBlank.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: 'Californian FB';
    font-size: 10px;
}

#mainSquare {
    width: 100%;
    flex: 1; /* fills between header & footer */
    display: flex;
    overflow: hidden;
    font-family: 'Californian FB';
    font-size: 10px;
}


#footer {
    width: 100%;
    height: 25px; /* stable replacement for 3vh */
    flex-shrink: 0;
    background-color: #0070C0;
    color: #C8C8C8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Californian FB';
    font-size: 10px;
}

#container {
    width: 200px;
    flex-shrink: 0;
    height: 100%;
    background-color: #171E36;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 5px;
    color: white;
    font-family: 'Californian FB';
    font-size: 10px;
}

#display {
    flex: 1;
    height: 100%;
    overflow: auto;
    background-color: #2E3349;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Californian FB';
    font-size: 10px;
}

.links {
    width: 100%;
    height: 425px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    margin: 2px 2px 2px 2px;
    font-family: 'Californian FB' !important;
    font-size: 12px !important;
    gap: 1px;
}

    .links a {
        width: 98%;
        height: 25px;
        max-height: 25px;
        display: flex;
        align-items: start;
        justify-content: start;
        color: #C8C8C8;
        text-decoration: none;
        border: 1px solid #939393;
        border-radius: 5px;
        padding: 5px 10px;
        background-color: transparent;
        transition: background 0.3s, border-color 0.3s;
        font-family: 'Californian FB' !important;
        font-size: 12px !important;
    }

        .links a:hover {
            background-color: #2E3349;
            border-color: #A6C9EC;
            color: #A6C9EC;
        }

    .links .active {
        background: #ffcc00;
        border: 2px inset white;
        color: darkblue;
        font-weight: bold;
    }

#headMain {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

#headTop {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /*border: 1px inset white;*/
}


#headBotton {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#lblChildName {
    font-family: 'Californian FB';
    font-size: 20px;
    font-weight: bold;
    color: deepskyblue;
    background-color: transparent;
    border: inset 2px deepskyblue;
    border-radius: 4px;
    height: 30px;
    width: 400px;
    text-align: center;
    vertical-align: middle;
}


.headLang {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.headSide-en {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.headSide-ar {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#rightBlock {
    width: 5%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

#centerBlock {
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#leftBlock {
    width: 5%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#imgCrntUser {
    width: 30px;
    height: 45px;
    border: inset 1px white;
    border-radius: 5px;
}

.imgUserBlock {
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.warning_denger {
    background-color: red;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-size: large;
    font-weight: normal;
}

html[lang='ar'] .links a {
    font-family: 'PT Heading', 'Simplified Arabic', serif;
    font-weight: normal;
    font-size: 10px;
    text-align: right;
}

html[lang='en'] .links a {
    font-family: 'Bangkok', 'Segoe UI', sans-serif;
    font-weight: normal;
    font-size: 12px;
    text-align: left;
}


.wrapper {
    height: 83vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #4BB2FF;
}

.loginContainer {
    border-radius: 7px;
    width: 70vw;
    max-width: 70vw;
    height: 70vh;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border: 1px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: white;
    background-color: #153D64;
    gap: 5px;
}

.WrapperA {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: flex-start;
    padding: 10px;
}

.LogincontainerA {
    border-radius: 25px;
    background-color: #fff;
    width: 70vw;
    max-width: 70vw;
    height: 75vh;
    max-height: 75vh;
    padding: 15px 15px;
    border: 1px solid #eee;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 20px;
}

.form-Control {
    width: 200px;
    height: 25px;
    padding: 5px 5px;
    border: 1px inset gainsboro;
    background-color: whitesmoke;
    border-radius: 5px;
    font-weight: bold;
    font-size: 10px;
    text-align: center;
    vertical-align: middle;
}

.login-Control {
    display: block;
    width: 300px;
    max-width: 300px;
    height: 28px;
    max-height: 28px;
    padding: 5px 5px;
    font-size: 11px;
    font-weight: normal;
    color: black;
    background-color: whitesmoke;
    border: inset 1px white;
    border-radius: 5px;
}

.btn-Login, .btn-Register {
    display: block;
    width: 300px;
    height: 28px;
    font-size: 11px;
    color: white;
    padding: 2px 2px;
    border-radius: 5px;
    border-style: inset;
    margin: 1px 0;
    border: none;
    cursor: pointer;
}

.btn-Login {
    background-color: royalblue;
}

    .btn-Login:hover {
        background-color: darkorange;
    }

.btn-Register {
    background-color: forestgreen;
}

    .btn-Register:hover {
        background-color: darkorange;
    }


#lblHeadTitle {
    font-size: 2rem;
    font-family: "Stencil Std", Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
    text-align: left;
    margin-top: 5px;
    margin-left: 20px;
    color: #A6C9EC;
}

#lblSubtitlea {
    font-size: 1rem;
    font-family: "Stencil Std", Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
    text-align: left;
    margin-top: 5px;
    margin-left: 20px;
    color: cornflowerblue;
}

.h1-style-en {
    direction: ltr;
    text-align: left;
    font-family: 'Californian FB';
}

.h2-style-en {
    direction: ltr;
    text-align: left;
    font-family: 'Californian FB';
}


.h1-style-ar {
    direction: rtl;
    text-align: right;
    font-family: 'PT Heading'
}

.h2-style-ar {
    direction: rtl;
    text-align: right;
    font-family: 'PT Heading'
}

h1 {
    font-size: 1.75rem;
}

h2 {
    font-size: 1.25rem;
}

h3 {
    font-size: 0.75rem;
    font-family: Courier New, Courier, monospace;
    text-align: center;
    vertical-align: top;
    color: lightcyan;
}

.nav-link.active {
    font-weight: bold;
    color: #007bff;
    background-color: #e9ecef;
    border-radius: 4px;
}

.imgHead {
    float: right;
    height: 70px;
    width: 70px
}

.page-Control {
    display: block;
    width: 300px;
    height: 25px !important;
    max-height: 25px !important;
    padding: 5px 5px;
    font-size: 10px;
    font-weight: normal;
    font-family: Courier New, Courier, monospace;
    color: black;
    background-color: whitesmoke;
    border: inset 1px whitesmoke;
    border-radius: 5px;
}

.text-Control {
    display: block;
    width: 300px;
    height: 22px !important;
    max-height: 22px !important;
    padding: 2px 10px;
    font-size: 10px;
    font-weight: normal;
    font-family: Courier New, Courier, monospace;
    color: black;
    background-color: whitesmoke;
    border: inset 1px whitesmoke;
    border-radius: 3px;
}

.label-Control {
    display: block;
    width: 100px;
    height: 22px !important;
    max-height: 22px !important;
    padding: 4px 4px;
    font-size: 10px;
    font-family: 'Times New Roman', Times, serif;
    color: black;
    background-color: whitesmoke;
    border: inset 1px white;
    border-radius: 3px;
}


.BarButton {
    padding: 4px 4px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: 1px ridge white;
    color: darkblue;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
}

.btnAddn {
    background-color: lightskyblue;
    background-image: url(/Images/WebBtn/ADDN.png);
}

.btnEdit {
    background-color: lightskyblue;
    background-image: url(/Images/WebBtn/EDIT.png);
}

.btnUndo {
    background-color: lightskyblue;
    background-image: url(/Images/WebBtn/UNDO.png);
}

.btnSave {
    background-color: lightskyblue;
    background-image: url(/Images/WebBtn/SAVE.png);
}

.btnDele {
    background-color: lightskyblue;
    background-image: url(/Images/WebBtn/DELE.png);
}

.btnPrnt {
    background-color: lightskyblue;
    background-image: url(/Images/WebBtn/PRNT.png);
}

.btnFind {
    background-color: lightskyblue;
    background-image: url(/Images/WebBtn/FIND.png);
}

.BarButton:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

#btnLang {
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-color: lightskyblue;
    color: darkblue;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    text-align: center;
    vertical-align: middle;
    border: 1px ridge white;
    border-radius: 4px;
}

#Page-Contents {
    width: 98%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 5px;
    margin: 5px 5px 5px 0px;
    border-radius: 5px;
    overflow:hidden;
}

#Page-Contents-row {
    width: 98%;
    height: 98%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 5px 5px 5px 0px;
    border: 2px inset darkslateblue;
    border-radius: 5px;
    padding: 5px 5px;
    overflow: hidden;
}

.page-Container-top-wide {
    width: 98%;
    height: 180px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 5px;
    border: 1px inset darkslateblue;
    border-radius: 5px;
}

.page-Quarter-Up-Left {
    width: 75%;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px inset darkslateblue;
    border-radius: 5px;
}

.page-Quarter-Up-Right {
    width: 25%;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px inset darkslateblue;
    border-radius: 5px;
}

#page-Left-Div {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px inset darkslateblue;
    border-radius: 5px;
    color: aqua;
}


#page-Rigt-Div {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px inset darkslateblue;
    border-radius: 5px;
    color: yellow;
}


#entryBlock {
    width: 98%;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 5px 5px;
    color: white;
    gap: 5px;
    border: 2px inset darkslateblue;
    border-radius: 5px;
}

#singelBlock {
    width: 98%;
    height: 40px;
    margin: 5px 5px 5px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 5px;
    color: white;
    gap: 5px;
    border: 2px inset darkslateblue;
    border-radius: 5px;
}

.er-Bi-Block {
    width: 98%;
    height: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2px 2px;
    color: white;
    gap: 1px;
    border: 2px inset darkslateblue;
    border-radius: 5px;
}


#gridBlock {
    width: 98%;
    height: calc( 100% - 190px);
    margin: 5px 5px 0px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 2px 2px;
    color: white;
    border: 2px inset darkslateblue;
    border-radius: 5px;
}

.grid-Block-Full {
    width: 98%;
    height: 98%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2px 2px;
    color: white;
    border: 2px inset darkslateblue;
    border-radius: 5px;
}

#Maps_Contents {
    height: calc(100% - 150px);
    width: 98%;
    border: 2px inset darkslateblue;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 5px;
    gap: 5px
}

#messageBlock {
    width: 100%;
    height: 50px;
    margin: 5px 5px 0px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 2px 2px;
    color: darkslateblue;
    gap: 5px;
}

.rowBlock {
    width: 97%;
    height: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 5px;
    margin-left: 5px;
    padding: 2px 2px;
}

.page-Label {
    display: block;
    width: 100px;
    height: 25px !important;
    max-height: 25px !important;
    padding: 7px 5px;
    font-size: 10px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
    color: black;
    background-color: whitesmoke;
    border: inset 1px white;
    border-radius: 5px;
}

.warning-Label {
    display: block;
    width: 100px;
    height: 25px !important;
    padding: 5px 5px;
    color: white;
    background-color: red;
    border: inset 1px darkred;
    border-radius: 5px;
    text-align: center;
    vertical-align: middle;
    font-size: 12px;
    font-weight: bold;
    font-family: Courier New, Courier, monospace;
}


.page-ddl-Control {
    display: block;
    width: 300px;
    height: 28px;
    max-height: 28px;
    padding: 5px 5px;
    font-size: 11px;
    font-weight: normal;
    font-family: Courier New, Courier, monospace;
    color: black !important;
    background-color: white;
    border: inset 1px white;
    border-radius: 5px;
}

.elements-Control {
    display: block;
    width: 480px;
    padding: 5px 5px;
    font-size: 11px;
    font-weight: normal;
    font-family: Courier New, Courier, monospace;
    color: black;
    background-color: whitesmoke;
    border: inset 1px white;
    border-radius: 5px;
}

.en-rtl {
    display: block;
    width: 480px;
    padding: 5px 5px;
    font-size: 11px;
    font-weight: normal;
    font-family: Courier New, Courier, monospace;
    color: black;
    background-color: whitesmoke;
    border: inset 1px white;
    border-radius: 5px;
    direction: ltr;
    margin: 2px 2px 2px;
    text-align: left;
    color: #000000
}

.txt-en {
    direction: ltr !important;
    text-align: left !important;
    text-transform: uppercase;
    font-family: Courier New, Courier, monospace;
    font-size: 15px;
    font-weight: bold;
    color: #000000
}

.txt-ar {
    direction: rtl !important;
    text-align: right !important;
    font-family: 'Arabic Transparent';
    font-size: 15px;
    font-weight: bold;
    color: #000000
}

select.txt-en {
    direction: ltr !important;
    text-align: left !important;
}

.overlay-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Centered modal box */
.overlay-box {
    background-color: white;
    padding: 25px 35px;
    border-radius: 8px;
    width: 350px;
    box-shadow: 0 0 20px #000;
    text-align: center;
}

/* Input */
.search-input {
    width: 90%;
    padding: 7px;
    font-size: 16px;
}

/* Buttons */
.search-btn {
    background-color: #2c8dd1;
    color: white;
    padding: 7px 18px;
}

.cancel-btn {
    background-color: #888;
    color: white;
    padding: 7px 18px;
}

.btn-Control {
    width: 150px;
    height: 23px;
    color: #000;
    cursor: pointer;
    padding: 2px 2px;
    background-color: transparent;
    border: 2px inset darkgray;
    border-radius: 4px;
    font-size: 11px;
    font-family: Courier New, Courier, monospace;
    font-weight: bold;
}

    .btn-Control:hover {
        opacity: 0.6;
    }

.accordion-header {
    width: 98%;
    cursor: pointer;
    color: white;
    padding: 8px 0;
    display: block !important;
    text-align: left !important;
}

.accordion-content {
    width: 98%;
    display: none;
    flex-direction: row;
    margin-bottom: 10px;
}

.elementBlock {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.en-ltr-Summary,
.ar-rtl-Summary {
    flex: 1 !important;
    resize: none;
    overflow: hidden;
    padding: 10px 10px;
    box-sizing: border-box;
    font-size: 14px !important;
    line-height: 1.00;
    color: whitesmoke;
    background-color: transparent;
    border: inset 2px darkgray;
    border-radius: 4px;
}

.en-ltr-Summary {
    direction: ltr;
    text-align: left;
    font-family: Courier New, Courier, monospace
}

.ar-rtl-Summary {
    direction: rtl;
    text-align: right;
    font-family: 'Arabic Transparent'
}

.autoresize {
    overflow-y: hidden !important;
    overflow-x: hidden !important;
}

.eng-list-block {
    width: 100%;
    background: #C8CDE6;
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.6;
    direction: ltr;
    text-align: left;
    white-space: pre-wrap;
    color: darkblue;
}

.arb-list-block {
    width: 100%;
    background: #C8CDE6;
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    white-space: pre-wrap;
    color: darkblue;
}

    .eng-list-block p,
    .arb-list-block p {
        margin: 0 0 8px 0;
        text-indent: -20px;
        padding-left: 25px;
    }


.engBlock p, .arbBlock p {
    margin-left: 20px;
    text-indent: -15px;
    width: 580px;
    border-radius: 4px;
    background-color: transparent;
    border: 2px inset whitesmoke;
    color: white;
}

.arbBlock {
    direction: rtl;
    text-align: right;
}

    .arbBlock p {
        margin-right: 20px;
        text-indent: -15px;
    }


#divD {
    width: 1265px;
    height: 425px;
    padding: 5px 5px;
    background-color: transparent;
    border: 2px inset white;
    border-radius: 5px;
}

.englComp {
    direction: ltr;
    text-align: left;
    font-size: 1.25rem;
    font-family: 'Californian FB';
    font-weight: bolder;
}

.arabComp {
    direction: rtl;
    text-align: right;
    font-size: 1.25rem;
    font-family: 'PT Heading';
    font-weight: bolder;
}

.englApps {
    direction: ltr;
    text-align: left;
    font-size: 1.00rem;
    font-family: 'Californian FB';
    font-weight: bolder;
}

.arabApps {
    direction: rtl;
    text-align: right;
    font-size: 0.75rem;
    font-family: 'PT Heading';
    font-weight: bolder;
}

#pbiBox {
    width: 98%;
    height: 98%;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    margin: 5px 5px 5px 5px;
    padding: 5px 5px;
    background-color: transparent;
}

.pbi-wrapper {
    width: 100%;
    height: calc(100vh - 45px);
    overflow: hidden;
}

.titleHead {
    width: 98%;
    height: 30px;
    background-color: aqua;
    color: darkblue;
    font-family: Courier New, Courier, monospace;
    font-size: large;
    font-weight: bold;
    border: inset 2px darkslateblue;
    border-radius: 4px;
    display: flow;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
    padding: 2px 2px;
}

.iframStyle {
    border: 2px inset darkgray;
    border-radius: 5px;
    background-color: transparent;
    width: 1152px;
    height: 580px;
}


.iframePbiRs {
    width: 100%;
    height: 100%;
    border: 2px inset darkgray;
    border-radius: 5px;
    background-color: transparent;
}

.profileBar {
    width: 230px;
    height: 98%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px ridge darkslategray;
    border-radius: 5px;
}

    .profileBar img {
        width: 150px;
        height: 200px;
        border-radius: 5px;
    }

    .profileBar .welcome {
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 10px;
    }

.profile-box .welcome {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
}

.barButton {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px ridge white;
    background-color: #082548;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    padding: 10px;
    gap: 10px;
}

    .barButton a:hover {
        background-color: yellow;
        color: #1f1f1f;
    }

    .barButton .homeButton {
        width: 95%;
        height: 40px
    }

.page-Viewer {
    width: 97%;
    height: 94%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 2px inset darkslategray;
    border-radius: 5px;
    gap: 5px;
}

.item-preview {
    width: calc(100% - 250px);
    height: 98%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px ridge darkslategray;
    border-radius: 5px;
}

.FaceStyle {
    width: 98%;
    height: 98%;
    background-color: transparent;
    padding: 5px 5px;
    color: white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px inset darkslategray;
    border-radius: 5px;
}

#copyright {
    padding: 15px 0;
}

    #copyright p {
        margin: 0;
        padding: 0;
    }

#waterWheelDv {
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#waterwheelCarousel {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

    #waterwheelCarousel img {
        width: 400px;
        height: 300px;
    }

.doc-img {
    display: block;
    background: #111;
    border-radius: 6px;
    object-fit: contain;
}

.size-200 {
    width: 200px;
    height: 150px;
}

.size-400 {
    width: 400px;
    height: 300px;
}

.size-600 {
    width: 600px;
    height: 450px;
}

.size-700 {
    width: 700px;
    height: 525px;
}

.size-800 {
    width: 800px;
    height: 600px;
}

#MainMapDivs {
    width: 50%;
    height: 99%;
    border: 2px inset darkslateblue;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 5px;
}

#map {
    width: 98%;
    height: 500px;
    border: 2px solid white;
    border-radius: 5px;
    background-color: #005A9E;
}

    #map.disabled {
        pointer-events: none;
        opacity: .5;
        filter: grayscale(1);
    }


#Pdf-Frame-Div {
    width: 100%;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5px 5px;
}

.WarningViewer {
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.img_Get {
    display: block;
    width: 150px;
    height: 25px;
    padding: 5px 5px;
    background-color: #f8f9fa;
    border: 1px inset white;
    border-radius: 5px;
    font-size: 9px;
    text-align: center;
    cursor: pointer;
    color: #007bff;
    transition: all 0.3s ease-in-out;
}

    .img_Get:hover {
        background-color: #e9f5ff;
        border-color: #0056b3;
        color: #0056b3;
    }

    .img_Get:focus {
        outline: none;
        border-color: #0056b3;
        box-shadow: 0 0 5px #007bff;
    }

.float-right {
    float: right
}

.PhonCode {
    width: 120px;
    float: left;
}

.PhonText {
    width: 58%;
    height: 25px;
    float: right;
    padding: 3px 5px;
    border-radius: 5px;
    border: 2px inset white;
    font-size: 10px;
    color: black
}

.PhonNmbr {
    height: 25px;
    border-radius: 5px;
    border: 2px inset white;
    font-size: 10px;
    color: black;
}

.txt-eng {
    direction: ltr !important;
    text-align: left !important;
    text-transform: uppercase;
    font-family: Courier New, Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    color: #000000
}

.txt-arb {
    direction: rtl !important;
    text-align: right !important;
    font-family: 'Arabic Transparent';
    font-size: 10px;
    font-weight: normal;
    color: #000000
}

.warningLbl {
    display: block;
    width: 84.50%;
    height: 25px !important;
    padding: 5px 5px;
    color: white;
    background-color: red;
    border: inset 1px darkred;
    border-radius: 5px;
    text-align: center;
    vertical-align: middle;
    font-size: 12px;
    font-weight: bolder;
    font-family: Courier New, Courier, monospace;
}

#entr_Block {
    width: 99%;
    height: 255px;
    margin: 5px 5px 0px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 2px 2px;
    color: white;
    gap: 2px;
    border: 2px inset darkslateblue;
    border-radius: 5px;
}

#left_Block {
    width: 88%;
    height: 253px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 2px 2px;
    color: white;
    gap: 2px;
    border: 2px inset darkslateblue;
    border-radius: 5px;
}

#rigt_Block {
    width: 12%;
    height: 253px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 5px;
    color: white;
    gap: 5px;
    border: 2px inset darkslateblue;
    border-radius: 5px;
}

#mapBlock {
    height: 325px;
    width: 99%;
    border: 2px inset darkslateblue;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 5px;
}

.text-control-white {
    display: block;
    width: 300px;
    height: 22px !important;
    max-height: 22px !important;
    padding: 2px 10px;
    font-size: 10px;
    font-weight: normal;
    font-family: Courier New, Courier, monospace;
    color: black;
    background-color: whitesmoke;
    border: inset 1px whitesmoke;
    border-radius: 3px;
}

.text-control-yellow {
    display: block;
    width: 300px;
    height: 22px !important;
    max-height: 22px !important;
    padding: 2px 10px;
    font-size: 10px;
    font-weight: normal;
    font-family: Courier New, Courier, monospace;
    color: black;
    background-color: yellow;
    border: inset 1px whitesmoke;
    border-radius: 3px;
}

.label-Control-me {
    display: block;
    width: 100px;
    height: 22px !important;
    max-height: 22px !important;
    padding: 4px 4px;
    font-size: 10px;
    font-family: 'Times New Roman', Times, serif;
    color: white;
    background-color: transparent;
    border: inset 2px darkslateblue;
    border-radius: 3px;
}

.radio-group {
    width: 300px;
    height: 26px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 5px;
    margin-left: 5px;
    margin-right: 5px;
    border: inset 2px darkslateblue;
    border-radius: 5px;
}

.btn-Block {
    width: 99%;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5px 5px;
}

.files_Getting {
    width: 200px;
    height: 26px;
    padding: 2px 2px;
    color: aqua;
    background: darkslategray;
    border: 2px inset #fff;
    border-radius: 3px;
    font-size: 8px;
    text-align: center;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
}

    .files_Getting::file-selector-button {
        height: 18px;
        width: 100px;
        border: 1px inset whitesmoke;
        border-radius: 3px;
    }

    .files_Getting:hover {
        background: floralwhite;
        border-color: darkgrey;
        color: darkblue;
    }

    .files_Getting:focus {
        outline: none;
        border-color: #0056b3;
        box-shadow: 0 0 5px #007bff;
    }


.dateCombo {
    width: 220px !important;
    border: 1px solid #4a90e2;
    border-radius: 6px;
}

    .dateCombo .riTextBox {
        width: 100% !important;
        height: 42px;
        background-color: #f5f7fa; 
        color: #333333; 
        border: 1px solid #4a90e2; 
        border-radius: 6px;
        padding: 6px 10px;
        font-size: 14px;
    }

        .dateCombo .riTextBox:hover {
            border-color: #2c6cd1;
            background-color: #ffffff;
        }

        .dateCombo .riTextBox:focus {
            border-color: #1b4f9c;
            box-shadow: 0 0 4px rgba(27,79,156,0.4);
        }

    .dateCombo .riButton {
        background-color: #4a90e2;
        border-left: 1px solid #4a90e2;
    }

        .dateCombo .riButton:hover {
            background-color: #2c6cd1;
        }

        .dateCombo .riButton span {
            color: #ffffff;
        }
