/* Custom AWS Dark Theme Adjustments & Animations */

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

.animate-spin-slow {
    animation: spinSlow 12s linear infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #0b0f19;
}

::-webkit-scrollbar-thumb {
    background: #233044;
    border-radius: 3px;
}

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

/* Dropzone dragover effect */
#drop-zone.drag-over {
    border-color: #ff9900;
    background-color: rgba(255, 153, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.15);
}

/* Glassmorphism card subtle glow */
.aws-glow {
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.5), 0 0 15px -3px rgba(255, 153, 0, 0.1);
}
