/* Custom styles in addition to Tailwind */
.activity-card {
    transition: all 0.2s ease-in-out;
}

.activity-card:hover {
    transform: translateY(-2px);
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Color input styles */
input[type="color"] {
    -webkit-appearance: none;
    padding: 0;
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 4px;
}

/* Modal form styles */
.modal-overlay {
    backdrop-filter: blur(2px);
}

.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Location suggestions animation */
.location-suggestions {
    transition: all 0.2s ease-in-out;
}

.location-suggestion-item:hover {
    background-color: rgba(59, 130, 246, 0.1);
} 