html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}


.siteBackGround {
    background-color: #e9ecfb;
}
.mainBackGround {
    background-color: #1e2a63;
}

.formBackground {
    background-color: rgba(0,0,0,0.3);
    padding: 20PX;
}
.mainColor {
    color: #4B49AC;

}
.greenIDbgColor {
    background-color: #00b2bb;
}
.greenIDColor {
    color: #00b2bb;
}
.blackIDbgColor {
    background-color: #1e2a63;
}

.blackIDColor {
    color: #1e2a63;
}


.btn-close.white-close {
    filter: invert(1);
}



bluebgColor {
    background-color: #1977cc;
}

blueColor {
    color: #1977cc;
}


.page-header {
    background: linear-gradient(135deg, #4facfe, #00f2fe); /* أزرق تركواز أفتح */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .page-header h1 {
        letter-spacing: 0.5px;
        text-shadow: 0 1px 3px rgba(0,0,0,0.25);
    }

    .page-header i {
        color: #fff8dc; /* لون كريمي هادئ للأيقونة */
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }


.dropdown-menu {
    min-width: max-content;
}

    .dropdown-menu a {
        white-space: nowrap;
    }



#productsTable tbody tr:hover {
    cursor: pointer;
}


.select2-container--default .select2-selection--single .select2-selection__clear {
    margin-right: 25px !important; /* إزاحة علامة X عن السهم */
    z-index: 1000 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    margin-left: 20px !important; /* إبعاد السهم عن X */
}


/*start card dashbord*/
.stat-card {
    background-color: #1e2a63;
    color: white;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-count {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 15px 0;
}

.stat-btn {
    background-color: rgba(255,255,255,0.2);
    border: none;
    color: white;
}

    .stat-btn:hover {
        background-color: rgba(255,255,255,0.3);
    }
/*end card dashbord*/

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: #1e2a63;
}

.mainName:hover{
    color:white;
}

.divider-white {
    border-top: 1px solid #fff;
}

.page-loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* dots container */
.dots-loader {
    display: flex;
    gap: 10px;
}

    /* dots */
    .dots-loader span {
        width: 12px;
        height: 12px;
        background-color: #00b2bb; /* لون هادئ */
        border-radius: 50%;
        animation: dotPulse 1.6s ease-in-out infinite;
        opacity: 0.3;
    }

        /* تأخير لكل نقطة */
        .dots-loader span:nth-child(1) {
            animation-delay: 0s;
        }

        .dots-loader span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .dots-loader span:nth-child(3) {
            animation-delay: 0.4s;
        }

/* الحركة */
@keyframes dotPulse {
    0% {
        transform: translateY(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-12px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.3;
    }
}

.card {
    transition: all .2s ease;
}

    .card:hover {
        transform: translateY(-4px);
    }



/*.unread-message {
    background-color: #fff3cd;*/ /* أصفر */
    /*border-right: 5px solid #ffc107;
    cursor: pointer;
}*/

.unread-message {
    background-color: #6AECE1; /* أصفر */
    border-right: 5px solid #018790;
    cursor: pointer;
}

.read-message {
    background-color: #ffffff;
    border-right: 5px solid #1e2a63;
}


.ltr-page {
    direction: ltr;
    text-align: left;
}
