﻿ 
.dis-vet-center {
    display: flex;
    align-items: center;
    direction:rtl;
}
    .hall-calender .day-name {
        color: #3E454C;
        width: 40px;
        text-align: center;
        margin: 0 .25rem;
    }

    .hall-calender .day-number {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background-color: transparent;
        border: 0;
        outline: none;
        padding: 0;
        border-radius: 100%;
        font-size: 18px;
        font-weight: 600;
       /* margin: .35rem .25rem;*/
    }

        .hall-calender .day-number:hover, .hall-calender .day-number:focus {
            border: 0;
            outline: none;
        }

        .hall-calender .day-number.passed {
            color: #A9B1B7;
            cursor: auto;
        }

        .hall-calender .day-number.current {
            color: #1B84FF;
            border: 1px solid #000;
            cursor: auto;
        }

        .hall-calender .day-number.reserved {
            color: #fff;
            background-color: #CEB06B;
            cursor: auto;
        }

        .hall-calender .day-number.holiday {
            color: #31af6a;
        }

        .hall-calender .day-number.unavailable {
            background-color: #E0A2B5;
            color: #fff;
        }

            .hall-calender .day-number.unavailable.disabled {
                cursor: auto;
            }

        .hall-calender .day-number.active {
            background-color: #1B84FF;
            color: #fff;
        }

   /* .hall-calender.fadeIn {
        animation: fadeInAnimation ease 1s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }*/

/*@keyframes fadeInAnimation {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}*/

.hall-action-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    background-color: #fff;
    border-top: 1px solid #E6EAED;
    z-index: 99;
    padding: 1rem 0;
}

.hall-footer-price {
    width: auto;
}
.mud-overlay-kara-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 !important;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    display: flex;
    transition: .3s cubic-bezier(.25,.8,.5,1),z-index 1ms;
    z-index: 5;
    background-color: #000;
    opacity: 0.6;
}

.mud-overlay-kara {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 !important;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    display: flex;
    transition: .3s cubic-bezier(.25,.8,.5,1),z-index 1ms;
    z-index: 5;
    background-color: #fff;
    opacity: 0.4;
}

.fade {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

    .fade.show {
        opacity: 1;
    }
.day-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 7 ستون مساوی */
    gap: 8px; /* فاصله بین دکمه‌ها */
}