.navbar {
    z-index: 1000;
    /* Ensure the navbar is above other elements */
}

.navbar-nav {
    align-items: center;
}

.navbar,
.footer {
    background-color: #ffffff !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0.1px;
}

.btn-dark {
    background: #ff4800;
    color: #fff;
    border: 1px solid #ff4800;
}

.btn-light {
    background: transparent;
    border: 1px solid #ff4800;
}

.btn-dark:hover {
    background: transparent;
    border: 1px solid #ff4800;
    color: #000;
}

.btn-light:hover {
    background: #ff4800;
    border: 1px solid #ff4800;
    color: #fff;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 6% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 33%;
    border-radius: 22px;
}

.close {
    color: #444;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 7px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    color: #000;
    background: #ccc;
    border: 1px solid #ccc;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.brand {
    display: flex;
    justify-content: center;
}

.fxt-logo {
    width: 200px;
    display: block;
    position: relative;
}

.zebaq-logo {
    width: 100%;
}

loginForm .form-group label {
    color: #000;
    margin-bottom: 5px;
    font-weight: 500;
}

.modal-title {
    font-size: 32px;
    color: #444;
    text-align: center;
    font-family: 'Segoe UI';
    font-weight: 600;
}

.forms {
    /* max-width: 70%;
    margin: 0 auto; */
    padding-top: 20px;
    padding-bottom: 20px;
}

.forms input:focus {
    border-color: #ff4800a6;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(168, 52, 52, 0.6);
}

#loginForm .form-group input {
    padding: 15px 10px;
    font-size: 15px;
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 15px;
    color: #000;
}

.pass-div {
    position: relative;
}

.pass-vis {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(-10px, -10px);
}

.pass-vis i {
    color: #000;
}

.fxt-switcher-text {
    color: #ff4800;
}

.fxt-switcher-text:hover {
    color: #ff4800;
    text-decoration: none;
}

.btn-div {
    text-align: center;
}

.fxt-btn-fill {
    width: 200px;
    padding: 10px;
    font-size: 18px;
    color: #fff;
    background: #ff4800;
    border-radius: 15px;
    border: 1px solid #ff4800;
}

.login-desc {
    color: #000;
    text-align: center;
}



.hr-div {
    display: flex;
    justify-content: center;
}

.hr-div hr {
    width: 200px;
    background: #ccc;
    height: 1px;
}

.not-reg {
    color: #000;
    text-align: center;
}

.not-reg a {
    color: #ff4800;
    font-weight: bold;
}

.fxt-checkbox-box input {
    height: unset;
}

.ps-4 a,
.login-desc a {
    color: #ff4800;
    font-weight: bold;
}

/* Hide the default checkbox */
#checkbox1 {
    display: none;
}

.fxt-checkbox-box label {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    margin-bottom: 0px;
}

.fxt-checkbox-box label::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 3px;
    left: 0;
    border: 1px solid #dcdcdc;
    border-radius: 3px;
    background-color: #fff;
    transition: border 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

#checkbox1:checked+label::before {
    background-color: #ff4800;
    border-color: #ff6e33;
}

#checkbox1:checked+label::after {
    content: "\2713";
    position: absolute;
    left: 2px;
    top: 0;
    font-size: 16px;
    color: white;
}

.terms-link {
    color: #ff4800;
    text-decoration: none;
    transition: color 0.3s;
}

.terms-link:hover {
    color: #ff6e33;
}

/* Links a */
.not-reg a {
    cursor: pointer;
}

/* Sidebar after login */
.user-name {
    position: relative;
    display: inline-block;
}

.nav-link {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sidebar {
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    background-color: #fff;
    color: #fff;
    transition: right 0.3s ease;
    z-index: 1000;
}

.sidebar.active {
    right: 0;
}

.name-span {
    font-size: 20px;
    padding: 5px 5px 7px 5px;
    border: 1px solid #cccccc8a;
    background: #cccccc8a;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.name-span:hover {
    border: 1px solid #ccc;
    background: #ccc;
}

#sidebar {
    padding-top: 25px;
    margin-top: 75px;
}

#sidebar .close {
    top: 29px;
    right: 15px;
    border: unset;
    background: #000;
    transition: all .3s ease;
}

#sidebar .close:hover {
    background: #444;
    border: unset;
}

#sidebar svg.Uvi.gUZ.U9O.kVc {
    width: 80%;
    fill: #fff;
    transition: all .3s ease;
}

#sidebar .close:hover svg {
    fill: #000;
}

.icon-box:has(.prsn-info) {
    display: flex;
    background: #575757;
    padding: 5px;
    margin: 0 10px;
    border-radius: 6px;
}

.icon {
    width: 20%;
    background: #222;
    place-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.prsn-info {
    padding: 5px 10px;
    width: 80%;
}

.prsn-info h2 {
    font-size: 20px;
}

.prsn-info h4 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 21ch;
    max-width: 21ch;
    font-size: 16px;
}

.menu-box a.nav-link {
    color: #000;
}

.menu-box a.nav-link::before {
    content: '';
    height: 6px;
    width: 6px;
    background: #000;
    border-radius: 10px;
    margin-right: 10px;
    position: relative;
    top: 2px;
    transition: all .3s ease;
}

.menu-box a.nav-link:hover::before {
    width: 20px
}

