/* Custom styles that can't be done with Tailwind */
/* Drop shadow for images */
.img-drop-shadow {
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

/* Custom animation for upload box */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.8;
    }
}

.upload-box:hover {
    animation: pulse 2s infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #d946ef, #e879f9);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d946ef;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(to right, #d946ef, #e879f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom button hover effect */
.btn-hover-effect {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hover-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(217, 70, 239, 0.3);
}

.btn-hover-effect:active {
    transform: translateY(-1px);
}