html, body {
    height: 100%;
}
@font-face {
    font-family: 'RobotoFlex';
    src: url('/static/fonts/RobotoFlex-VariableFont_GRAD,XOPQ,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC,opsz,slnt,wdth,wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'RobotoFlex', sans-serif;
    
}

.reserved {
    background: rgba(240, 75, 94, 0.15);
    filter:invert(0.2)
    
}

.sold {
  opacity: 0.7;
  filter: blur(1.3px) opacity(0.8);

}

/* Hide un-compiled Vue.js templates until they're ready */
[v-cloak] {
    display: none;
}


.v-table.v-table--hover>.v-table__wrapper>table>tbody>tr>td {
    white-space: nowrap;
}

/* Dropzone Styles - Centralized for reusability */
.dropzone {
    border: 2px dashed #0d6efd;
    border-radius: 8px;
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropzone:hover {
    background: #e9ecef;
    border-color: #0b5ed7;
}

.dropzone.dz-drag-hover {
    background: #cfe2ff;
    border-color: #0b5ed7;
    border-style: solid;
}

.dropzone .dz-message {
    font-size: 16px;
    color: #495057;
    margin: 0;
}

.dropzone .dz-preview {
    margin: 10px;
}

.dropzone .dz-preview .dz-image {
    border-radius: 4px;
    overflow: hidden;
    width: 120px;
    height: 120px;
    position: relative;
    display: block;
    z-index: 10;
}

.dropzone .dz-preview .dz-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dropzone .dz-preview .dz-details {
    font-size: 13px;
    color: #6c757d;
}

.dropzone .dz-preview .dz-filename {
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-remove {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: #dc3545;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropzone .dz-preview .dz-remove:hover {
    background: #bb2d3b;
}

.dropzone .dz-preview.dz-error .dz-error-message {
    display: block;
    background: #dc3545;
    color: white;
    padding: 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 8px;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
    color: #198754;
    font-size: 24px;
}

.dropzone .dz-preview .dz-progress {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
}

.dropzone .dz-preview .dz-progress .dz-upload {
    display: block;
    height: 100%;
    background: #0d6efd;
    transition: width 0.3s ease;
}

/* Color Picker Styles */
.color-picker input[type="color"] {
    height: 50px;
    cursor: pointer;
    border-radius: 4px;
}