﻿
.login-tab {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.icon-info{
    font-size:25px;
}

.service-item{
    display:flex;
    justify-content:start;
    align-content:center;
    align-items:center;
}

.processes {
    position: absolute;
    top: 0;
    left: 0;
}

.processes .form-check-input {
    width: 30px !important;
    height: 30px !important;
}

.processes .form-check label {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: red !important;
    position: relative;
    top: 5px;
    left: 5px;
}


.days-list-group {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .days-list-group li {
        display: inline-block;
        margin-right: 10px;
        background-color: white;
        border: 1px solid #ddd;
        padding: 0 10px;
    }

        .days-list-group li:last-child {
            margin-right: 0;
        }

nav.Page.navigation.example {
    border-bottom: 1px solid #e9eef3;
    padding: 18px 0;
    border-radius: 6px;
}

.pagination-container {
    display: flex;
    justify-content: center;
}

.pagination {
    list-style: none;
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
    align-items: center;
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial;
    font-size: 14px;
    color: #374151;
}

    .pagination li span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        user-select: none;
        cursor: pointer;
        transition: background-color 0.15s ease, transform 0.06s ease;
        font-weight: 500;
        color: #374151;
    }

    .pagination li:not(.active) span:hover {
        background-color: #f1f5f9;
        transform: translateY(-1px);
    }

    .pagination li.active span {
        background-color: #2563eb; 
        color: #ffffff;
        font-weight: 600;
        box-shadow: 0 6px 18px rgba(37,99,235,0.12);
    }

    .pagination li.prev span,
    .pagination li.next span {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .pagination li.disabled span {
        opacity: 0.4;
        cursor: default;
        pointer-events: none;
    }


.flatpickr-months .flatpickr-month .flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 700;
    background-color: #ff000000 !important;
    color: #141824;
}


#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none; 
    justify-content: center;
    align-items: center;
}

.loading-text {
    font-size: 24px;
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    gap: 5px;
}

.dot {
    font-weight: bold;
    font-size: 28px;
    animation: blink 1.4s infinite;
}

    .dot:nth-child(2) {
        animation-delay: 0.2s;
    }

    .dot:nth-child(3) {
        animation-delay: 0.4s;
    }

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


.table-responsive {
    overflow-x: unset !important;
}


.tooltip-box {
    position: absolute;
    background: #222 !important;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.15s ease;
    pointer-events: none;
    z-index: 9999;
    max-width: 20%;
    word-wrap: break-word;
    white-space: normal;
}

    .tooltip-box.show {
        opacity: 1;
        transform: translateY(0);
    }
