﻿/* weekLine jquery-ui css*/

.ui-WeekDays a
{
    padding: 2px 3px !important;
}

.ui-WeekDays a:hover
{
    background-color: rgba(var(--bs-primary-rgb), 0.7) !important; /* Schiarisce lo sfondo al passaggio del mouse */
}

.ui-WeekDays .ui-state-active
{
    border-style: solid !important;
    border-width: 1px !important;
}

/* weekLine dark css*/

.weekDays-dark a
{
    padding: 5px 5px !important;
    margin: 5px auto !important;
    color: white !important;
    background-color: #f5a582b7 !important;
    text-decoration: none !important;
    width: 2rem !important;
    height: 2rem !important;
    border-radius: 100% !important;
    font-family: Quicksand, sans-serif !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.weekDays-dark a:hover
{
    background-color: #0083CB !important; /* Schiarisce lo sfondo al passaggio del mouse */
    text-decoration: none !important;
}

.weekDays-dark .selectedDay
{
    background-color: #599ec3e1 !important; /* Schiarisce lo sfondo al passaggio del mouse */
}

.weekDays-dark .selected
{
    background-color: #0069a1 !important; 
}

.weekDays-dark a.disabled
{
    background-color: #f5a582b7 !important; /* Sfondo più chiaro per i giorni disabilitati */
    color: #f4f4f4 !important; /* Testo grigio chiaro */
}

.weekDays-dark a.chiuso
{
    background-color: #a1a1a1 !important; /* Sfondo grigio scuro */
    color: #dcdcdc !important; /* Testo grigio chiaro */
}


/* weekLine white css*/

.weekDays-white a
{
    padding: 5px 5px !important;
    margin: 5px auto !important;
    color: white !important;
    background-color: #f5a582b7 !important;
    text-decoration: none !important;
    width: 2rem !important;
    height: 2rem !important;
    border-radius: 100% !important;
    font-family: Quicksand, sans-serif !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.weekDays-white a:hover
{
    background-color: #0083CB !important; /* Schiarisce lo sfondo al passaggio del mouse */
    text-decoration: none !important;
}

.weekDays-white .selectedDay
{
    background-color: #0083CB !important;
}

.weekDays-white .selected
{
    background-color: #0083CB !important;
}

.weekDays-white a.disabled
{
    background-color: #f5a582b7 !important; /* Sfondo più chiaro per i giorni disabilitati */
    color: #f4f4f4 !important; /* Testo grigio chiaro */
}

.weekDays-white a.chiuso
{
    background-color: #a1a1a1 !important; /* Sfondo grigio scuro */
    color: #dcdcdc !important; /* Testo grigio chiaro */
}

.orario-container {
    background-color: #f8f9fa; /* Sfondo più scuro */
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}