.no-slots-modal {
    position         : fixed;
    top              : 0;
    left             : 0;
    width            : 100%;
    height           : 100%;
    background-color : rgba(0, 0, 0, 0.5);
    display          : flex;
    justify-content  : center;
    align-items      : center;
    z-index          : 1000;
}

.no-slots-modal-content {
    background    : white;
    padding       : 20px;
    border-radius : 10px;
    text-align    : center;
    box-shadow    : 0 4px 8px rgba(0, 0, 0, 0.2);
}

.no-slots-modal-content-text {
    margin-bottom : 5px;
    font-size     : 1rem;
    font-weight   : 600;
    color         : #001630;
}

.no-slots-modal-close-btn {
    margin-top       : 20px;
    padding          : 10px 20px;
    background-color : #007bff;
    color            : white;
    border           : none;
    border-radius    : 5px;
    cursor           : pointer;
}

.no-slots-modal-close-btn:hover {
    background-color : #0056b3;
}
