dialog::Backdrop  {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);
}

.grid{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-left: 2rem;
    margin-right: 2rem;
}

@media only screen and (max-width: 600px) {
    body {
        .grid{
            display:flex;
            flex-direction: column;
        }
    }
}

.FileUpload {
    display: none;
}

.dropzone {
    width: 200px;
    height: 300px;
    border: #2E2F30 dashed 1px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hidden {
    display: none;
}

.flex {
    display: flex;
    flex-direction: row;

}

dialog {
    width: 500px;
    max-width: 90%;
    border: none;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

.dialog-content {
    margin-bottom: 1rem;
}

/* app/assets/stylesheets/custom_select.scss or similar */
.select_box {
    /* Adjust the select’s height, border, background, etc. */
    padding: 0.5rem;
    border: 2px solid #0d6efd; /* a blue border */
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    /* Optional: remove the default arrow (if you want to style your own) */
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg ...>...</svg>");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem auto;
}

.select_box:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,0.25);
}

.gap-2 {
    gap: 4rem;
}
.ml-3 {
    margin-left: 2rem;
}

.mb-3 {
    margin-bottom: 2rem;
}

.bg-gray {
    background: lightgray;
}

.min-h-screen {
    min-height: 100vh;
}

.aspect-square {
    aspect-ratio: 1/1;
}

