@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }
}

.animate-shake {
    animation: shake 0.2s ease-in-out 0s 2;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

.honeypot-field label,
.honeypot-field input {
    position: absolute;
    left: -9999px;
}

.filter-pill {
    display: inline-block;
    background-color: #6F08E6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
    margin-right: 0.2rem;
    font-size: 0.875rem;
}

.pac-container {
    background-color: #111827;
    /* gray-900 matches app theme */
    z-index: 10000 !important;
    border: 1px solid #9333ea;
    /* purple-600 */
    border-radius: 0.5rem;
    font-family: inherit;
}

.pac-item {
    cursor: pointer;
    padding: 10px;
    font-size: 14px;
    color: #fff;
    /* white text */
    border-top: 1px solid #374151;
    /* gray-700 separator */
}

.pac-item:hover {
    background-color: #374151;
    /* gray-700 hover */
}

.pac-item-query {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
}

/* Hide the powered by google logo if desired or just let it be */
.pac-logo::after {
    /* display: none; */
}