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

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(85, 239, 196, 0.2);
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(85, 239, 196, 0.4);
}

/* Glassmorphism Panels */
.glass-panel {
    background: rgba(16, 38, 24, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Custom Select Dropdown Arrow */
.glass-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2355EFC4' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Utilities */
.hidden {
    display: none !important;
}

/* Modal Animations */
.modal-open {
    display: flex !important;
    opacity: 1 !important;
}

.modal-open>div {
    transform: scale(1) !important;
}

/* File Input Wrapper */
input[type="file"]::-webkit-file-upload-button {
    display: none;
}

input[type="file"]::file-selector-button {
    display: none;
}