﻿.file-upload-card {
    height: 150px;
    border: 1px dashed var(--mud-palette-primary);
    background: rgba(155, 0, 0, 0.05);
    cursor: pointer;
}

.file-upload-card:hover {
    background: rgba(155, 0, 0, 0.10);
}


.fade-in {
    animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@media (min-width: 1024px) {

    .my-drawer-light {
        width: 40dvw !important;
        min-width: 300px !important;
        --mud-palette-drawer-background: #ffffff !important;
        --mud-palette-drawer-text: #000000 !important;
        --mud-palette-drawer-icon: #000000 !important;
    }

    .my-drawer-dark {
        width: 40dvw !important;
        min-width: 300px !important;
        --mud-palette-drawer-background: #2c2c2c !important;
        --mud-palette-drawer-text: #ffffff !important;
        --mud-palette-drawer-icon: #ffffff !important;
    }
}

@media (max-width: 1023px) {
    .my-drawer-light {
        width: 100dvw !important;
        min-width: 200px !important;
        --mud-palette-drawer-background: #ffffff !important;
        --mud-palette-drawer-text: #000000 !important;
        --mud-palette-drawer-icon: #000000 !important;
    }

    .my-drawer-dark {
        width: 100dvw !important;
        min-width: 200px !important;
        --mud-palette-drawer-background: #2c2c2c !important;
        --mud-palette-drawer-text: #ffffff !important;
        --mud-palette-drawer-icon: #ffffff !important;
    }
}

.my-drawer-light-normal {
    --mud-palette-drawer-background: #ffffff !important;
    --mud-palette-drawer-text: #000000 !important;
    --mud-palette-drawer-icon: #000000 !important;
}

.my-drawer-dark-normal {
    --mud-palette-drawer-background: #2c2c2c !important;
    --mud-palette-drawer-text: #ffffff !important;
    --mud-palette-drawer-icon: #ffffff !important;
}

.inventory-drawer-container {
    height: calc(100dvh - 64px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.inventory-drawer-body {
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
}

.inventory-drawer-actions {
    flex: 0 0 auto;
    border-top: 1px solid var(--mud-palette-divider);
    background: var(--mud-palette-surface);
}
