/* Article Drop Bucket Styles - Similar to coin/money bag buckets */
.article-drop-bucket-container {
    margin-top: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 150px !important;
    max-width: 150px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
}

.article-drop-bucket {
    width: 150px !important;
    height: 180px !important;
    margin: 0 auto !important;
    position: relative !important;
}

#article-drop-zone.article-bucket {
    width: 100% !important;
    height: 140px !important;
    background: linear-gradient(180deg, #744210, #5a3510) !important;
    border-radius: 0 0 30px 30px !important;
    border: 4px solid #8b5a2b !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    min-width: 150px !important;
    max-width: 150px !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: copy !important;
}

/* Drop bills hover styles */
#article-drop-zone:hover {
    cursor: copy !important;
    border-color: #d4af37 !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5) !important;
}

#article-drop-zone.drag-over-active {
    cursor: copy !important;
}

/* Tooltip/balloon for drop bills */
#article-drop-zone[title] {
    position: relative;
}

#article-drop-zone[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    font-size: 0.75rem;
    white-space: nowrap;
    border-radius: 6px;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#article-drop-zone[title]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 2px;
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    pointer-events: none;
    z-index: 1000;
}

.article-bucket.drag-over-active {
    border-color: #48bb78;
    box-shadow: 0 0 20px rgba(72, 187, 120, 0.5);
    transform: scale(1.05);
    animation: pulseGlow 1.5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(72, 187, 120, 0.6);
    }
    50% {
        box-shadow: 0 0 35px rgba(72, 187, 120, 0.9);
    }
}

.article-bucket.drop-animation {
    animation: dropSuccess 0.6s ease-out;
}

@keyframes dropSuccess {
    0% {
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(72, 187, 120, 1);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 50px rgba(72, 187, 120, 1);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

.article-bucket-handle {
    width: 80% !important;
    height: 15px !important;
    background: #8b5a2b !important;
    border-radius: 15px 15px 0 0 !important;
    margin: 0 auto -5px auto !important;
    display: block !important;
}

.article-bucket-label {
    text-align: center;
    margin-top: 10px;
    color: #a0aec0;
    font-size: 0.875rem;
}

.article-bucket-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    pointer-events: none;
    color: #d4af37;
}

.article-bucket-text {
    color: #d4af37;
    font-size: 0.75rem;
    text-align: center;
    pointer-events: none;
    font-weight: 600;
}


