.ui-widget.ui-datepicker {
    font-size: 14px;
    font-family: Raleway, sans-serif;
    box-shadow: 0 0 18px #999;
    padding: 0;
    border-radius: 3px;
}

.ui-widget.ui-datepicker td a {
    color: #000;
}

.ui-widget.ui-datepicker td a.ui-state-active {
    color: #fff;
    background: #057;
}

.ui-widget.ui-datepicker td a.ui-state-highlight {
    color: #000;
    background: none;
    font-weight: bold;
    border: none;
}

.ui-widget.ui-datepicker td a:hover {
    background: #5ea5c1;
    color: #fff;
}

.ui-datepicker .ui-datepicker-prev span {
    text-indent: 0;
}

.ui-datepicker .ui-datepicker-prev span:before {
    content: '<';
    display: block;
}

.ui-datepicker .ui-datepicker-next span {
    text-indent: 0;
}

.ui-datepicker .ui-datepicker-next span:before {
    content: '>';
    display: block;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    color: #000;
}

.ui-dialog.ui-widget {
    background: #fff;
    box-shadow: 0 0 27px #888;
}

.acf-input-prepend,
.acf-input-append {
    padding: 9px 8px 8px;
}

.ai-button {
    display: inline-flex;
    margin-left: 50px;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: linear-gradient(90deg, #7b2ff7, #f107a3);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ai-button .icon {
    width: 20px;
    height: 20px;
}

.ai-button:hover {
    box-shadow: 0 0 10px rgba(241, 7, 163, 0.8), 0 0 10px rgba(123, 47, 247, 0.7), 0 0 10px rgba(241, 7, 163, 0.5) transform: translateY(-2px);
}

.ai-button:active {
    transform: scale(0.96);
}

#loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.96);
    /* semi-transparent white */
    z-index: 99999999999999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #0073aa;
    /* Customize color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
