﻿
.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;
        }


.pagination-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.pagination {
    list-style: none;
    display: flex;
    gap: 5px;
    padding: 0;
    margin: 0;
}

    .pagination li a {
        display: block;
        padding: 8px 14px;
        text-decoration: none;
        color: #0d6efd;
        border: 1px solid #0d6efd;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.2s ease-in-out;
        background-color: #fff;
    }

        .pagination li a:hover {
            background-color: #0d6efd;
            color: white;
        }

    .pagination li.active a {
        background-color: #0d6efd;
        color: white;
        border-color: #0d6efd;
        cursor: default;
    }

    .pagination li.disabled a {
        color: #6c757d;
        border-color: #dee2e6;
        background-color: #f8f9fa;
        cursor: not-allowed;
    }

    .pagination li.PagedList-skipToPrevious a,
    .pagination li.PagedList-skipToNext a,
    .pagination li.PagedList-skipToFirst a,
    .pagination li.PagedList-skipToLast a {
        font-weight: bold;
    }


.flatpickr-months .flatpickr-month .flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 700;
    background-color: transparent !important;
    color: #141824;
}







/*loading*/
#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; /* Başlangıçta gizli */
    justify-content: center;
    align-items: center;
}
/* Yazı ve animasyon alanı */
.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;
    }
}



.upper-tooth, .bottom-tooth {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.tootht-item div img {
    width: 30px !important;
}


.search-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-options .item-search {
    width:12%;
}

.photo-type {
    width: 100%;
    height: 130px;
    overflow: hidden;
    position: relative;
}

    .photo-type img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.photo-get-btn {
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: 30px;
}

.photo-list-detail {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

    .photo-list-detail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media (max-width: 576px) {
    .pagination li a {
        padding: 6px 10px;
        font-size: 14px;
    }
}


.table-price-list{
    display:flex;
}

    .table-price-list div {
        font-weight: 800;
        font-size: 15px;
        margin: 0 25px 0 0;
    }
