#reservierung-widget-container{

    .widget-page {
        color:white;
        font-family: Arial, sans-serif;
        text-align: center;
        max-width: 500px;
        margin: auto;
        padding: 25px;
        padding-top: 1px;
        line-height: 1.5;

    }

    .widget-page .widget-header {
        display: flex;
        font-size: 11px;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        border-bottom: 2px solid #e0e0e0; 
    }

    .widget-page .back-button {
        color:white;
        background: none;
        border: none;
        font-size: 1em;
        cursor: pointer;
    }

    .widget-page .header-content {
        text-align: center;
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

    .widget-page .guest-count,
    .widget-page .menu-selection .menu-dateselection{
        display: inline-block;
        margin: 0 10px;
        font-weight: bold;
    }


    .widget-page .guest-selector {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #E6E6E6;
        border-radius: 20px;
        width: 70%;
        max-width: 250px;
        margin: auto;
    }
    .buttonround {
        border: 1px solid;
        background-color: #000;
        color: #fff;
        font-size: 30px;
        line-height: 40px; 
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        flex: 0 0 auto;
        z-index: 1;
    }

    .widget-page .input-number-people {
        display: flex; 
        justify-content: center; 
        align-items: center;
        background-color: #E6E6E6;
        height: 40px;
        text-align: center;
        border: none;
        width: 60px;
        flex: 1 1 auto;
        padding-left: 2px;
        color: black;
    }

    .widget-page .input-number-people p {
        margin: 0 5px; 
    }

    .continue-button {
        margin-top: 10px;
        background-color: #000;
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 20px;
        cursor: pointer;
        text-transform: uppercase;
        width: 70%;
        max-width: 200px;
    }

    .calendar-page {
    font-family: Arial, sans-serif;
    text-align: center;
    }

    .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    }

    .calendar-header h2 {
    font-size: 24px;
    }
    table,td,th{
        border:none;
    }
   

    .calendar {
    border-collapse: separate;
    border-spacing: 4px;
    width: 100%;
    margin: auto;
    }

    .calendar th {
    text-align: center;
    font-weight: normal;
    color:white;
    }

    .calendar td {
    color:black;
    width: 14.28%;
    height: 40px;
    vertical-align: middle;
    cursor: pointer;
    }
    .calendar td:hover {
        transform: scale(1.05); 
        font-weight:bold;
    }
    .calendar .available {
    background-color: #c8e6c9; 
    }

    .calendar .unavailable {
    background-color: #ffcdd2; 
    }

    .calendar .closed {
    background-color: #eeeeee; 
    }
    .calendar .empty {
    
    }
    .calendar .today {
    border: 1px solid #adb5bd;
    }
    .calendar .selected {
    border: 2px solid black;
    font-weight: bold;
    }

    .legend {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 10px;
    }

    .legend .colordiv {
    display: flex;
    align-items: center;
    margin-right: 9px;
    }

    .legend .color-box {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
    }

    .legend .color-box.available {
    background-color: #c8e6c9;
    }

    .legend .color-box.unavailable {
    background-color: #ffcdd2;
    }

    .legend .color-box.closed {
    background-color: #eeeeee;
    }


    .nav-button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 24px;
    color:white;
    }


    .nav-button:hover {
    color: #000;
    }

    #appointmentsContainer {
    display: none;
    padding: 20px;
    margin-top: 20px;
    height: 250px;
    overflow-y: auto;
    }

    .time-slot {
    background: #f2f2f2; 
    padding: 10px 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease; 
    color: black;
    }

    .time-slot:hover {
    background-color: #e0e0e0;
    }
    .info-box {
        margin-top: 20px;
        padding: 15px;
        border-left: 3px solid #ffcc00;
        background-color: #fff3cd;
        color: #856404;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        transition: all 0.3s ease-in-out;
    }

    .info-box p {
        margin: 10px 0;
    }

    .info-box a {
        color: #856404;
        text-decoration: none;
    }

    .info-box a:hover {
        text-decoration: underline;
    }


    @media (max-width: 768px) {
    .calendar td {
    height: 40px; 
    }
    .calendar-header h2 {
    font-size: 20px; 
    }
    #legend div {
    display: block;
    }
    .widget-page {
        max-width: 400px;
        padding: 5px;
    }
    .info-container {
        padding: 10px;
        font-size: 10px;
    }
    }
    .info-container {
        color: black;
        max-width: 600px;
        margin: auto;
        padding: 20px;
        background-color: #f1f1f1;
        text-align: left;
        margin-top: 1em;
        font-size: 13px;
    
    }
    .info-container .notearea{
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 3px;
    }
    .info-container h3{
        width: 100%;
    
    }
    .info-container input{
    border-radius: 20px;
    }
    .real-content {
        display: none;
    }
    .skeleton-text {
        height: 20px;
        width: 80%;
        background-color: #e0e0e0;
        margin-bottom: 5px;
        border-radius: 7px;
    }
    
    @keyframes loading {
        10% { background-color: #e0e0e0; }
        50% { background-color: #f0f0f0; }
        100% { background-color: #e0e0e0; }
    }
    .skeleton-text {
        animation: loading 2s infinite ease-in-out;
    }
    .form-label {
        display: inline-block;
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }
    .form-control {
       
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }
    
    .form-control:focus {
        color: #495057;
        background-color: #fff;
        border-color: #80bdff;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }
    h3 {
        font-size: 1.75rem;
        margin-top: 0;
        margin-bottom: 0.5rem;
        font-weight: 500;
        line-height: 1.2;
    }
    p {
        
            margin-top: 0;
            margin-bottom: 1rem;
        
    }
    label {
        display: inline-block;
        margin-bottom: 0.5rem;
    }
    *, ::after, ::before {
        box-sizing: border-box;
    }
    
}

