/* Minimalny styl jQuery UI Datepicker dla frontu starego WP */
.ui-datepicker {
    z-index: 99999 !important;
    width: 290px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.ui-datepicker-header {
    position: relative;
    padding: 8px 34px;
    background: #f3f3f3;
    text-align: center;
}
.ui-datepicker-prev,
.ui-datepicker-next {
    position: absolute;
    top: 7px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    text-indent: -9999px;
}
.ui-datepicker-prev { left: 6px; }
.ui-datepicker-next { right: 6px; }
.ui-datepicker-prev:after,
.ui-datepicker-next:after {
    position: absolute;
    top: 4px;
    left: 8px;
    text-indent: 0;
    color: #444;
    font-size: 18px;
}
.ui-datepicker-prev:after { content: '‹'; }
.ui-datepicker-next:after { content: '›'; }
.ui-datepicker-title {
    color: #444;
    font-size: 16px;
    line-height: 28px;
}
.ui-datepicker table {
    width: 100%;
    margin: 10px 0 0;
    border-collapse: collapse;
}
.ui-datepicker th,
.ui-datepicker td {
    padding: 2px;
    text-align: center;
    font-size: 14px;
}
.ui-datepicker td a,
.ui-datepicker td span {
    display: block;
    padding: 7px 0;
    color: #444;
    text-decoration: none;
    background: #f7f7f7;
}
.ui-datepicker td a:hover,
.ui-datepicker .ui-state-active {
    background: #32c8eb;
    color: #ffffff;
}
