body {
    height: 100vh;
    overflow: hidden;  /* Empêche le scroll */
    font-family: Arial;
    margin: 0;
    padding: 0;
    background-color: #bfbfbf;
}

#mobile-modal-rail {
    position: relative;
    width: calc(100% - 170px);
    height: 100%;
    margin-left: 170px;
}

.mobile-menu-toggle,
.sidebar-overlay {
    display: none;
}

.a4 {
    position: fixed;
    top: 5px;
    left: 185px;
    width: 210mm;
    height: 297mm;
    padding: 30px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    transform-origin: top left;
    font-size: 10px;
    background-color: #ffffff;
    overflow: hidden !important; /* Force la suppression du scroll hérité de .modal-left/right */
    /* Le zoom est calculé automatiquement via JavaScript ou CSS custom properties */
}

/* Styles communs pour les modals (position gérée par JavaScript) */
.modal-left, .modal-right {
    position: fixed;
    top: 5px;
    /* left est défini dynamiquement par JavaScript */
    overflow-y: auto;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

.modal-left {
    z-index: 10000;
}

.modal-right {
    z-index: 10001;
}

/* Base layer: le panneau principal ne doit jamais masquer les modals ouverts */
#main-a4 {
    z-index: 9000 !important;
}

/* Grand modal pour vue mensuelle (plein écran, mais laisse le menu visible) */
.modal-full {
    position: fixed;
    top: 5px;
    left: 190px; /* Commence après le menu (menu ~185px) */
    right: 5px;
    width: calc(100% - 195px);
    height: calc(100vh - 10px);
    max-width: none;
    z-index: 10002;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 !important; /* Pas de padding pour utiliser tout l'espace */
}

.modal-full .a4-header {
    padding: 10px 20px;
}

.modal-full > *:not(.a4-header) {
    padding: 0 10px; /* Réduire la marge gauche du contenu */
}

/* Styles pour les groupes du menu */
.group-header {
  background-color: #444 !important;
  cursor: pointer !important;
  font-weight: bold;
  border-top: 1px solid #555;
  display: flex;
  align-items: center;
}

.group-header:hover {
  background-color: #666 !important;
}

.group-icon {
  display: inline-block;
  width: 12px;
  margin-right: 5px;
  font-size: 10px;
}

.group-content {
  background-color: #3a3a3a;
}

.group-item {
  padding-left: 20px !important;
  background-color: #3a3a3a;
  border-left: 2px solid #555;
}

.group-item:hover {
  background-color: #4a4a4a !important;
}

.group-item a {
  font-size: 0.9em;
}

/* Conteneur pour les boutons de contrôle des modals (positionnement fixe en haut, centré) */
.modal-actions {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 10px;
    z-index: 100;
}

/* Message de confirmation/erreur positionné à gauche à la même hauteur que modal-actions */
.global-message {
    position: absolute;
    top: 0;
    left: 10px;
    display: inline-block;
    min-width: 150px;
    font-size: 10px;
    font-weight: bold;
    line-height: 25px; /* Même hauteur que les boutons pour alignement vertical */
    z-index: 100;
}

.session-btn { 
    display: inline-block;
    text-align: center;
    margin: 0px;
    padding: 0px;
    height: 17px;
    font-size: 10px;
    background-color: lightgreen;
    border: none;
    border-radius: 0px;
}

#video-player {
    width: 100%;
    margin: 20px auto;
    display: none;
    border: 1px solid #ddd;
}

button {
    display: inline-block;
    text-align: center;
    margin: 2px;
    padding: 0px 10px;
    height: 25px;
    font-size: 11px;
    background-color: #F2EC7E;
    color: black;
    border: none;
    border-radius: 0px;
}

/* ==========================================================
   Quill (éditeur WYSIWYG) - Styles globaux
   IMPORTANT: ces styles doivent être globaux (pas scoped),
   car Quill injecte des <p>/<ul>/<li> sans attribut Vue.
   ========================================================== */
.quill-editor-container {
  min-height: 200px;
  background: #fff;
}

.quill-editor-container .ql-editor {
  min-height: 150px;
  font-size: 1em;
  line-height: 1.6;
}

/* Taille Quill "small" : interligne plus compact */
.quill-editor-container .ql-editor .ql-size-small {
  line-height: 1.3;
}

.quill-editor-container .ql-editor p {
  margin: 0.6em 0;
  line-height: 1.6;
}

.quill-editor-container .ql-editor p:first-child {
  margin-top: 0;
}

.quill-editor-container .ql-editor p:last-child {
  margin-bottom: 0;
}

.quill-editor-container .ql-editor ul,
.quill-editor-container .ql-editor ol {
  margin: 0.8em 0;
  padding-left: 2em;
}

.quill-editor-container .ql-editor li {
  margin: 0.3em 0;
  line-height: 1.6;
}

.quill-editor-container .ql-editor blockquote {
  margin: 0.8em 0;
  padding-left: 1em;
  line-height: 1.6;
}

.quill-editor-container .ql-toolbar {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}

.quill-editor-container .ql-container {
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 4px 4px;
}

button:hover {
    background-color: #736D02;
    color: white;
}

img.logo {
    height: 50px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

h1 {
    font-size: 24px;
    margin: 0;
}

/* ========================================
   STYLES DE BASE DES TABLEAUX
   ======================================== */

table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    border: 0.5px solid #ddd;
}

th, td {
    border: 0.5px solid #ddd;
    padding: 4px;
    text-align: left;
    background: transparent;
}

th {
    height: 8px;
    background-color: #f2f2f2;
    font-weight: bold;
    font-size: 11px;
}

.table-title {
    font-size: 10px;
    font-weight: bold;
    color: #4a90e2; /* Bleu clair */
    margin-bottom: 0;
    border-bottom: none; /* Pour coller au tableau */
}


/* ========================================
   TABLEAUX DE LISTING (table.list)
   ======================================== */

/* Lignes alternées */
table.list tbody tr:nth-child(odd) {
    background-color: #FFFFFF;
}

table.list tbody tr:nth-child(even) {
    background-color: #F5F3E9;
}

/* Hover sur toute la ligne */
table.list tbody tr:hover td {
    background-color: #ffe64459 !important;
}

/* Ligne sélectionnée (priorité sur hover et zebra) */
table.list tbody tr.selected-row {
    background-color: #ffffcc !important;
}

table.list tbody tr.selected-row td {
    background-color: #ffffcc !important;
}

/* Troncature du texte pour éviter le débordement dans les cellules adjacentes */
table.list th,
table.list td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Tableaux Dossier unifiés : th bleu compact, hauteur BC par défaut */
.dossier-list th {
    border-color: #105576 !important;
    color: white !important;
    background-color: #105576 !important;
    padding: 2px 4px !important;
}
.dossier-list th a { line-height: 1; padding: 1px 4px; }
.dossier-list td {
    padding: 2px 4px !important;
    line-height: 1.2 !important;
    vertical-align: middle !important;
}
.dossier-list thead tr,
.dossier-list tbody tr { height: 24px; }
.dossier-table-section { margin-bottom: 12px; }
.documents-list .doc-checkbox-preview-cell {
    width: 32px !important;
    min-width: 32px !important;
    text-align: center !important;
    cursor: default !important;
}
.dossier-list .bc-actions-cell,
.dossier-list .dossier-action-cell { padding: 0 2px !important; }
.dossier-list .bc-action-picto,
.dossier-list .dossier-action-cell a { margin: 0 !important; padding: 0 2px !important; height: auto !important; min-height: 0 !important; line-height: 1; font-size: 12px; border: none; background: none; cursor: pointer; text-decoration: none; display: inline-block; vertical-align: middle; }

/* ========================================
   TABLEAUX DE FORMULAIRE (table.form)
   ======================================== */

/* Réduire la hauteur des cellules dans les formulaires */
table.form td {
    padding: 2px; 
    vertical-align: top;
}

.miniatures-column {
    height: 100px;
    max-height: 100px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.miniatures-column img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

/* Titre de section dans les cellules */
table.form .section-title {
    font-size: 9px;
    color: #666;
    background: transparent;
    /* Gestion du dépassement de texte */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

/* Valeur dans les cellules */
table.form .value {
    font-size: 12px;
     /*font-weight: bold;*/
    margin-top: 3px;
    display: block;
    background: transparent;
}

/* Inputs dans .value */
table.form .value input {
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    background: transparent;
}
table.form td.numeric .value input,
.numeric-input {
    text-align: right !important;
    padding-right: 6px !important;
    font-size: 12px;
    /*font-weight: bold;*/
    display: block !important;
    margin-top: 3px;
    background: transparent !important;
}

/* Placeholder très clair pour les inputs des formulaires */
table.form .value input::placeholder {
    color: #bbbbbb;
    opacity: 0.6;
}

/* Style spécifique pour les inputs datetime-local */
table.form .value input[type="datetime-local"] {
    margin-top: 3px;
    padding: 0;
}

/* Inputs number en inline pour éviter le retour à la ligne */
table.form .value input[type="number"] {
    display: inline-block;
    margin-top: 0;
}

/* Largeur par défaut pour les inputs number sans style inline */
table.form .value input[type="number"]:not([style*="width"]) {
    width: 100%;
}

/* Colonnes numériques alignées à droite et verticalement centrées */
table.form td.numeric,
table.form th.numeric {
    text-align: right;
    padding-left: 2px;
    padding-right: 6px;
}
table.form td.numeric {
    vertical-align: middle;
}
table.form td.numeric .value {
    padding-right: 6px;
    text-align: right;
}

/* Style des en-têtes de tableau de facture (comme dans facture_standard.ejs) */
table.form th {
    border-color: #105576 !important;
    color: white !important;
    background-color: #105576 !important;
    padding: 2px 4px !important;
    line-height: 1.2 !important;
    font-size: 10px !important;
    font-weight: bold !important;
}

/* Actions de facture (remplace les boutons par surlignage) */
.facture-action {
    display: inline-block;
    cursor: pointer;
    padding: 0px 2px;
    background-color: #F2EC7E;
    color: black;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    user-select: none;
}
.facture-action-th {
    font-size: 13px;
}
.facture-action:hover {
    background-color: #736D02;
    color: white;
}

/* Bouton fin jaune (petits liens d'action dans les en-têtes de tableau) */
.bouton-fin {
    text-decoration: none;
    background-color: #F2EC7E;
    color: black;
    border-radius: 3px;
    font-size: 12px;
    display: inline-block;
    padding: 2px 6px;
    cursor: pointer;
}
.bouton-fin:hover {
    background-color: #736D02;
    color: white;
}

/* Select et textarea dans .value */
table.form .value select,
table.form .value textarea {
    border: none;
    width: 100%;
    outline: none;
    font-size: 12px;
     /*font-weight: bold;*/
    font-family: Arial;
    background: transparent;
}

/* Input dans section-title */
table.form .section-title-input {
    font-size: 9px !important;
    color: #666 !important;
    font-family: inherit !important;
    text-align: left !important;
    display: inline-block !important;
    /*margin-top: 5px !important; */
    font-weight: normal !important;
    background: transparent;
    border: none;
    outline: none;
}

/* Select dans section-title (même style que section-title-input) */
table.form .section-title select {
    font-size: 9px !important;
    color: #666 !important;
    font-family: Arial !important;
    border: none;
    outline: none;
    width: 100%;
    font-weight: normal !important;
    background: transparent;
    cursor: pointer;
}

/* Couleur très claire pour l'option placeholder des selects (option désactivée) */
table.form .section-title select option[disabled] {
    color: #bbbbbb;
}

/* .value vide */
table.form .value:empty {
    margin-bottom: 14px;
    background: transparent;
}

/* Boutons radio et checkboxes sur une seule ligne */
table.form .value:has(input[type="radio"]), 
table.form .value:has(input[type="checkbox"]) {
    display: flex;
    gap: 15px;
    align-items: center;
    background: transparent;
}

table.form .value:has(input[type="radio"]) label,
table.form .value:has(input[type="checkbox"]) label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 12px;
     /*font-weight: bold;*/
    white-space: nowrap;
    background: transparent;
}

table.form .value:has(input[type="radio"]) input[type="radio"],
table.form .value:has(input[type="checkbox"]) input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
    background: transparent;
}

/* Cellule modifiée (fond jaune) */
table.form td.modified {
    background-color: #f3ffba !important;
    transition: background-color 0.3s ease;
}

/* ========================================
   AUTRES STYLES
   ======================================== */

/* Image ronde du véhicule (utilisée dans agenda, afacturer, debiteurs, etc.) */
.car-image {
  position: relative;
  z-index: 999;
  width: 50px;
  height: 50px;
  margin: 4px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 3px solid rgba(83, 83, 83, 0.79);
  overflow: hidden;
  flex-shrink: 0;
}

.form-group {
    margin-bottom: 15px;
}


/* ==========================================
   IMPRESSION — règles globales pour window.print()
   (utilisé par les vues pleine page : Pp, Tva, Journal…)
   Les modals utilisent printModal() (iframe isolé dans modals.js)
   ========================================== */
@media print {
    .non-impression {
        display: none !important;
    }

    @page {
        margin: 0;
    }

    .a4 {
        width: 210mm;
        height: 297mm;
        border: none !important;
        margin: auto;
    }

    table {
        width: 100%;
        border-collapse: collapse;
    }

    .highlight {
        background-color: yellow !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Masquer le chronomètre à l'impression */
    #chrono, .chrono, [id*="chrono"], [class*="chrono"] {
        display: none !important;
    }
}

.success-message {
    display: inline-block;
    padding: 5px 10px;
    margin-left: 10px;
    background-color: #d4edda;
    color: #155724;
    border-radius: 3px;
}

.error-message {
    display: inline-block;
    padding: 5px 10px;
    margin-left: 10px;
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 3px;
}

/* Styles pour Contact.vue */
.tag-badge {
    display: inline-block;
    background-color: #ffcece;
    padding: 2px 4px;
    margin-left: 3px;
    border-radius: 2px;
    font-size: 10px;
}

.tag-remove {
    margin-left: 5px;
    cursor: pointer;
    font-weight: bold;
    color: #666;
}

.tag-remove:hover {
    color: #000;
}

.add-icon {
    display: inline-block;
    margin-left: 4px;
    font-size: 9px;
    color: #00bae8;
    cursor: pointer;
    font-weight: bold;

}



.partenaire-container,
.commission-container,
.client-container,
.ldossier-container,
.lfactures-container {
    margin-top: 20px;
    padding-top: 20px;
}

.lfactures-button.active {
    background-color: #F2EC7E;
    border-color: #e6d74a;
}

.selected {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    padding: 5px;
}

/* Menu déroulant autocomplete unifié */
.autocomplete-dropdown {
    position: absolute;
    z-index: 1000;
    background-color: white;
    width: 300px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 2px 0 0 0;
    display: none;
}

.autocomplete-dropdown.show {
    display: block;
}

/* Items du menu (compatible <li> et <div>) */
.autocomplete-dropdown li,
.autocomplete-dropdown .item {
    padding: 4px 6px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.autocomplete-dropdown li:last-child,
.autocomplete-dropdown .item:last-child {
    border-bottom: none;
}

.autocomplete-dropdown li:hover,
.autocomplete-dropdown li.active,
.autocomplete-dropdown .item:hover,
.autocomplete-dropdown .item.active {
    background-color: #007bff;
    color: white;
}

.sidebar {
    width: 170px;
    height: 100vh;
    background-color: #333;
    color: white;
    position: fixed;
    left: 0;
    top: 0;
    padding-top: 20px;
    display: block;
    overflow-y: auto;
}
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar ul li {
    padding: 6px;
    text-align: left;
}
.sidebar ul li a {
    color: white;
    text-decoration: none;
    display: block;
}
.sidebar ul li:hover {
    background-color: #575757;
}
.sidebar .auth-section {
    text-align: left;
    padding: 10px;
}
.sidebar input, .sidebar button {
    width: 115px;
    padding: 5px;
    text-align: left;
    margin: 5px 0;
}

/* ==========================================================
   MOBILE/TABLETTE (<= 1024px): menu overlay + rail modals
   ========================================================== */
@media (max-width: 1024px) {
    html, body, #app {
        height: 100dvh !important;
        overflow: hidden !important;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        position: fixed;
        top: 8px;
        left: 8px;
        z-index: 13000;
        width: 34px;
        height: 34px;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        font-size: 18px;
        line-height: 1;
        background: #333;
        color: #fff;
    }

    .sidebar-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 11950;
        background: rgba(0, 0, 0, 0.35);
    }

    .sidebar {
        z-index: 12000;
        width: min(84vw, 320px);
        transform: translateX(-105%);
        transition: transform 0.22s ease-out;
        box-shadow: 4px 0 16px rgba(0, 0, 0, 0.35);
    }

    .sidebar.is-mobile-open {
        transform: translateX(0);
    }

    #mobile-modal-rail {
        position: fixed;
        inset: 0;
        margin-left: 0;
        width: auto;
        z-index: 1000;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        touch-action: pan-x;
        overscroll-behavior-y: none;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    #mobile-modal-rail::-webkit-scrollbar {
        display: none;
    }

    #modals-container {
        display: contents;
    }

    #main-a4,
    #modals-container .modal-left,
    #modals-container .modal-right {
        position: relative !important;
        flex: 0 0 auto;
        width: 210mm !important;
        min-width: 210mm;
        height: 297mm !important;
        max-height: 297mm;
        margin: 0;
        scroll-margin-left: 0;
        overflow-y: hidden;
        overflow-x: hidden;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    #main-a4 {
        z-index: auto !important;
    }
}

.a4-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}


/* 📌 Module upload */
#drop-area {
    width: 50%;
    margin: auto;
    padding: 30px;
    border: 2px dashed #007bff;
    border-radius: 10px;
    background: #f9f9f9;
    cursor: pointer;
}
#drop-area.highlight {
    background: #e3f2fd;
}
#file-input {
    display: none;
}
.progress-container {
    width: 100%;
    background: #f3f3f3;
    border-radius: 5px;
    margin-top: 10px;
    padding: 5px;
}
.progress-bar {
    width: 0%;
    height: 10px;
    background: #007bff;
    border-radius: 5px;
    transition: width 0.4s ease-in-out;
}
.upload-success {
    color: green;
    font-weight: bold;
}

/* UploadPhoto.vue - ajustements UI demandés */
#app .upload-photo-container .drop-zone {
    padding: 4px 10px !important;
    min-height: 14px !important;
}

#app .upload-photo-container .drop-zone-content {
    gap: 0 !important;
}

#app .upload-photo-container .drop-zone-subtext {
    margin-top: 4px !important;
}

#app .upload-photo-container .drop-zone .link-button {
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    padding: 2px 10px !important;
    border: 1px solid #0066cc !important;
    border-radius: 6px !important;
    background: #eef6ff !important;
    text-decoration: none !important;
}

#app .upload-photo-container .drop-zone-compact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
}

#app .upload-photo-container .drop-zone-mid {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #555;
    white-space: nowrap;
}

#app .upload-photo-container .drop-zone-mid .drop-zone-text {
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.1 !important;
}

/* ========================================
   CARTES PV (Contrats location)
   ======================================== */
.pv-cards {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.pv-card {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 12px 14px;
    background: #fafafa;
    transition: border-color 0.15s;
}

.pv-card:hover {
    border-color: #4a90e2;
}

.pv-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.pv-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #4a90e2;
    cursor: pointer;
    margin: 0;
    text-decoration: none;
    transition: color 0.15s;
}

.pv-card-title:hover {
    color: #2a6fc2;
    text-decoration: underline;
}

.pv-badge {
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    line-height: 1.4;
}

.pv-badge-ok {
    background: #d4edda;
    color: #155724;
}

.pv-badge-pending {
    background: #e9ecef;
    color: #6c757d;
}

.pv-card-meta {
    font-size: 10px;
    color: #888;
    margin-bottom: 10px;
}

.pv-card-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pv-btn-open {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    height: 26px;
    font-size: 11px;
    font-weight: 600;
    background: #F2EC7E;
    color: #333;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
}

.pv-btn-open:hover {
    background: #e6d74a;
    color: #000;
}

.pv-btn-open:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.pv-btn-open:disabled:hover {
    background: #F2EC7E;
    color: #333;
}

.pv-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    padding: 0;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 2px;
    cursor: pointer;
    color: #555;
    transition: all 0.15s;
}

.pv-btn-icon:hover {
    background: #e8f0fe;
    border-color: #4a90e2;
    color: #4a90e2;
}

.pv-btn-icon:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pv-btn-icon:disabled:hover {
    background: transparent;
    border-color: #ccc;
    color: #555;
}

.pv-btn-icon svg {
    width: 13px;
    height: 13px;
}

.pv-actions-sep {
    width: 1px;
    height: 16px;
    background: #ddd;
    margin: 0 2px;
}

.pv-storage-info {
    margin-top: 8px;
    font-size: 10px;
    color: #999;
}

/* Responsive mobile */
@media (max-width: 600px) {
    .pv-cards {
        flex-direction: column;
    }
}
