/*!
 *      __  ____  
 *     / / |___ \ 
 *    / /    __) |
 *   < <    |_ Wetter-Puls
 *    \ \   ___) |
 *     \_\ |____/ 
 *
 *  (c) 2025-2026 Daniel Frey | https://wetter-puls.de
 *  Author:  Daniel Frey <daniel@dan.jetzt>
 *  License: Proprietary & Confidential - All Rights Reserved
 */

.glassmorphic-card {
    background: rgba(46, 45, 45, 0.4) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dropzone-area {
    cursor: pointer;
    border-style: dashed !important;
    border-width: 2px !important;
    transition: all 0.25s ease-in-out;
}

.dropzone-area:hover, .dropzone-area.dragover {
    border-color: var(--bs-info) !important;
    background: rgba(13, 202, 240, 0.05) !important;
}

.dropzone-icon {
    transition: transform 0.3s ease;
}

.dropzone-area:hover .dropzone-icon {
    transform: translateY(-5px);
}

.bg-info-soft {
    background-color: rgba(13, 202, 240, 0.15) !important;
}

.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.15) !important;
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.15) !important;
}

.bg-danger-soft {
    background-color: rgba(220, 53, 69, 0.15) !important;
}

.text-xs {
    font-size: 0.75rem !important;
}

.text-info-soft {
    color: rgba(13, 202, 240, 0.8) !important;
}

.cursor-pointer {
    cursor: pointer;
}

.hover-grow {
    transition: transform 0.2s ease;
}
.hover-grow:hover {
    transform: scale(1.02);
}

.transition-all {
    transition: all 0.2s ease-in-out;
}

.object-fit-cover {
    object-fit: cover;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
