/**
*
* This file contains common styles for the plugin frontend
*
**/

.lfzw_btn {
    cursor: pointer;
}

.lfzw-hidden {
    display: none;
}

.lfzw-loading {
    text-align: center;
}

.lfzw-loading img {
    width: 50px;
}

.ui-datepicker {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    width: 280px;
    max-width: 100%;
    text-align: center;
}

.ui-datepicker-header {
    background-color: #2c3e50 !important;
    color: #fff !important;
    font-size: 16px;
    padding: 8px;
    border-radius: 5px 5px 0 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    background-color: #fff !important;
    color: #2c3e50 !important;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    background-color: #f0f0f0 !important;
    color: #34495e !important;
}

.ui-datepicker th {
    background-color: #34495e !important;
    color: white !important;
    padding: 6px;
    font-size: 12px;
}

.ui-datepicker-calendar td a {
    display: block;
    text-align: center;
    padding: 8px;
    font-size: 14px;
    color: #2c3e50 !important;
    text-decoration: none;
    border-radius: 4px;
}

.ui-datepicker td a:hover {
    background-color: #2c3e50 !important;
    color: white !important;
}

.ui-datepicker .ui-state-active {
    background-color: #02893f !important;
    color: white !important;
    font-weight: bold;
    border-radius: 5px;
}