/* Custom styles that cannot be easily replicated with Tailwind */

@keyframes ai-spin {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(360deg);
    }
}

.animate-ai-spin {
    animation: ai-spin 3s ease-in-out infinite;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 50;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

.app-explanation-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #ffffff;
}

/* Specific utility classes not covered by default Tailwind */
.resize-none {
    resize: none;
}

/* Any other custom styles that can't be easily replicated with Tailwind */


/* Additional styles for specific buttons if needed */
/* #manageAccommodationsBtn {
    @apply px-4 py-2 rounded-full bg-white text-airbnb-primary font-semibold hover:bg-opacity-90;
}

#settingsBtn {
    @apply p-2 rounded-full bg-white bg-opacity-20 hover:bg-opacity-30;
} */