:root{
  --vm-brand:#1e293b;
  --vm-brand-700:#16243a;
  --vm-brand-900:#0b1220;
  --vm-border:#e5e7eb;
  --vm-muted:#60656b;
  --vm-soft:#f8fafc;
  --vm-danger:#b32d2e;
  --vm-warn-bg:#fff3d6;
  --vm-warn-text:#8a5b00;
  --vm-warn-border:#ffd86b;
  --vm-accent: #2563eb;
  --vm-accent-2: #22c55e;
  --vm-track: #e5e7eb;
  --vm-upload-bg: #f8fafc;
  --vm-amber: #f59e0b;
}

/* ====== NUEVO LAYOUT 25/75 ====== */
.vm-page.vm-form-layout{
  max-width: 1160px;
  margin: 32px auto 64px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: minmax(260px, 25%) minmax(0, 1fr); /* 25% / 75% */
  gap: 40px;
}

/* Columna izquierda sticky */
.vm-left-inner{
  position: sticky;
  top: 24px;
}

/* Divisoria y respiración en derecha */
.vm-right{
  border-left: 1px solid var(--vm-border);
  padding-left: 32px;
}

/* Header dentro de la izquierda */
.vm-form-header{
  margin: 8px 0 32px 0;
  padding: 0;
}
.vm-form-header h1{
  margin: 0 0 6px;
  font-size: 38px;
  line-height: 1.2;
  color: var(--vm-brand);
}
.vm-form-header p{ margin: 0 0 14px; }
.vm-form-header a{ color: var(--vm-accent); text-decoration: none; }
.vm-form-header a:hover{ text-decoration: underline; }

/* ====== MINI CARD DEL NEGOCIO ====== */
.vm-biz-card{
    background: #fff;
    border: 1px solid var(--vm-border) !important;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.07);
    transition: box-shadow .18s ease, transform .12s ease;
}
.vm-biz-card:focus{
  border: 1px solid var(--vm-border) !important;
}
.vm-biz-media{
  display:block;
  background: #f1f5f9;
}
.vm-biz-thumb{
  display:block;
  width: 100%;
  height: auto;
  max-height: 160px;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: opacity .1s linear;
}
.vm-biz-thumb--placeholder{
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg,#f1f5f9,#e5e7eb);
}
.vm-biz-thumb:hover {
    opacity: 0.89;
}
.vm-biz-body{
  padding: 14px 16px 16px 16px;
}
.vm-biz-title{
  font-size: 18.8px;
  line-height: 1.25;
  margin: 3px 0 8px;
  color: var(--vm-brand);
}
.vm-biz-title a{
  color: inherit;
  text-decoration: none;
}
.vm-biz-title:hover{ text-decoration: underline; }
p.vm-biz-meta{
    margin: 0 0 10px;
    font-size: 14px;
    color: #475569;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    line-height: 1.55;
}

/* --- FORMULARIO INLINE --- */
.vm-form-card{
  background:#fff;
  padding: 0;
  margin-bottom: 60px;
}

/* --- INPUTS FORMULARIO REVIEWS --- */
.vm-form-card label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #1e293b;
}
.review-add-photos-label {
    margin-top: 25px;
}
.vm-form-card input[type="text"] {
    width: 100%;
    height: 45px;
    padding: 13px 15px 15px 15px;
    border: 1px solid #e1e1e1 !important;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.05);
}
.vm-form-card input[type="number"],
.vm-form-card textarea {
    width: 100%;
    border: 1px solid #e1e1e1 !important;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.07);
    resize: vertical;
}
.vm-form-card input[type="number"]:focus,
.vm-form-card textarea:focus,
.vm-form-card input[type="text"]:focus {
    outline: none;
    border: 1px solid #1e293b !important;
}
.vm-form-card input[type="file"] {
    display: block;
    margin-bottom: 20px;
}
.vm-form-card input[type="checkbox"] {
    margin-right: 5px;
    margin-top: -4px;
    width: 18px;
    height: 18px;
    line-height: 0;
    vertical-align: middle;
}
label.review-confirmation {
    font-weight: 500;
    margin: 25px 5px 10px;
    cursor: pointer;
    user-select: none;
}
.vm-form-card button[type="submit"] {
    background-color: #1e293b;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    margin-top: 15px;
    width: 100%;
}
.vm-form-card button[type="submit"]:hover {
    opacity: .9;
}
#char-count {
    font-size: 13px;
    color: #808285;
    text-align: right;
    margin: -5px 0 10px 0;
}
#title-char-count {
    font-size: 13px;
    color: #808285;
    margin-bottom: 10px;
    text-align: right;
}

/* --- RATING SLIDER --- */
#rating-slider-container {
    position: relative;
    width: 100%;
    margin: 72px 0 29px 0;
    max-width: 100%;
    user-select: none;
}
#rating-slider {
    position: relative;
    width: 100%;
    height: 15px;
    background: linear-gradient(to right, #ff4d4d, #ffcc00, #33cc33);
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
#rating-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    background: #fff;
    border: 2px solid #0056b3;
    border-radius: 50%;
    cursor: pointer;
    transition: left 0.2s, transform 0.2s;
}
#rating-handle:hover {
    transform: translate(-50%, -50%) scale(1.07);
    border-color: #003d80;
    box-shadow: 0 0 10px rgba(0, 115, 230, 0.5);
}
#initial-rating-message {
    position: absolute;
    top: -52px;
    left: 45%;
    transform: translateX(-50%);
    transition: left 0.2s, top 0.2s, transform 0.2s;
    white-space: nowrap;
    border-radius: calc(50px / 5.5) calc(32px / 5.5) calc(32px / 5.5) 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    color: #fff !important;
    background-color: #ffffff;
    padding: 0 16px 0 0;
    text-align: center;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    border: 2px solid #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    line-height: 1.1;
}
#initial-rating-message .rating-number {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    background-color: #1e293b;
    padding: 4px 6px 4px 4px;
    margin-left: -1px;
    border-radius: 6px 0 0 0;
    text-align: center;
    display: flex;
    align-items: center;
}
#initial-rating-message .rating-star {
    content: '★';
    color: #ffc107;
    font-size: 26px;
    margin: 0px 1px 2px 3px;
}
#initial-rating-message .rating-text {
    color: #1e293b;
    margin-left: 16px;
    font-size: 17px;
}
#rating-value {
    position: absolute;
	top: -50px;
    transform: translateX(-50%);
    transition: left 0.2s, top 0.2s;
    white-space: nowrap;
    border-radius: calc(50px / 5.5) calc(32px / 5.5) calc(32px / 5.5) 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    color: #fff !important;
    background-color: #ffffff;
    padding: 0px 16px 0px 0px;
    font-size: 17px;
    text-align: center;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    border: 2px solid #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    line-height: 1.7;
}
.rating-number {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    background-color: #1e293b;
    padding: 4px 6px 4px 4px;
    margin-left: -1px;
    border-radius: 6px 0 0 0;
    text-align: center;
    display: flex;
    align-items: center;
}
.rating-star {
    content: '★';
    color: #ffc107;
    margin-right: 2px;
}
.rating-text {
    font-size: 16.3px;
    color: #1e293b;
    margin-left: 16px;
    font-weight: 600;
    padding-bottom: 1.1px;
}

/* --- DROPZONE COMUN --- */
.vm-form-card .vm-file-input-hidden{
  position:absolute !important; width:1px !important; height:1px !important;
  padding:0 !important; margin:-1px !important; overflow:hidden !important;
  clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; border:0 !important;
}
.vm-form-card .vm-dropzone{
  border:2px dashed #cbd5e1;
  border-radius:12px;
  background: var(--vm-soft);
  padding: 22px;
  text-align:center;
  cursor:pointer;
  margin: 10px 0 12px;
  user-select: none;
  transition: background .18s, border-color .18s, transform .12s ease;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.vm-form-card .vm-dropzone:focus{
  background: var(--vm-soft) !important;
  border:2px dashed #cbd5e1 !important;
}
.vm-form-card .vm-dropzone:hover,
.vm-form-card .vm-dropzone.is-dragover{
  background:#f1f5f9 !important;
  border-color: var(--vm-brand) !important;
}
.vm-form-card .vm-dropzone:active{
  border: 2px dashed var(--vm-brand) !important;
  background: #ebf0f6 !important;
}
.vm-form-card .vm-dz-icon{ width:40px; height:40px; display:block; margin:4px auto 8px; opacity:.95; }
.vm-form-card .vm-dz-title{ margin:0; color: var(--vm-brand); font-size:16px; }
.vm-form-card .vm-dz-sub{ margin:4px 0 0; color:#64748b; font-size:13px; }

/* Dropzone legacy */
.custom-file-upload, .custom-file-upload-photo{ border: 2px dashed #cbd5e1; background: var(--vm-soft); padding: 22px; text-align:center; cursor:pointer; height: 140px; display:flex; flex-direction:column; justify-content:center; align-items:center; margin: 10px 0 18px; border-radius: 12px; transition: background .18s, border-color .18s; }
.custom-file-upload:hover,
.custom-file-upload-photo:hover{ background:#f1f5f9; border-color: var(--vm-brand); }
.custom-file-upload-icon { width: 24px; height: 24px; margin-bottom: 8px; }
.custom-file-upload-bold { font-size: 15.5px; font-weight: 600; }
.custom-file-upload-text { font-size: 12.5px; color: #888; line-height: 1.6; margin-top: 5px; }

/* --- Grid de THUMBS común --- */
#preview-images, #preview-images-photo {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1.15rem;
    list-style: none;
    margin: 0;
    overflow: hidden;
}
.vm-thumb { position: relative; display:inline-block; border-radius: 10px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); overflow: hidden; min-height: 124px; max-height: 124px; }
.vm-thumb:last-child { margin-bottom: 10px; }
.vm-thumb img { display:block; width: 100%; height: 100%; object-fit: cover; border-radius: 10px; cursor: pointer; }
.vm-thumb-status{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background:rgba(0,0,0,.35); color:#fff; font-size:12px; border-radius:6px;
  opacity:0; pointer-events:none; transition:opacity .2s;
}
.vm-thumb-status.is-visible{ opacity:1; }
.vm-thumb-status.is-error{ background:rgba(180,0,0,.45); }
.vm-spinner{ width:22px; height:22px; border:3px solid #fff; border-top-color:transparent; border-radius:50%; animation:vmspin .8s linear infinite; }
@keyframes vmspin{ to{ transform:rotate(360deg); } }

#preview-images button, #preview-images-photo button{
  position:absolute; top:6px; right:6px; background:#1e293b; color:#fff; border:0;
  border-radius:50px; width:33px; height:33px; font-size:22px; line-height:33px; cursor:pointer; padding: 0;
}
#preview-images button:hover, #preview-images-photo button:hover{ background:#111827; }

/* --- MODAL para añadir DESCRIPCIONES de imágenes --- */
#image-description-modal, #image-description-modal-photo {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
}
#image-description-overlay, #image-description-overlay-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
}
#image-description-content, #image-description-content-photo {
    background-color: #fff;
    border-radius: 10px;
    width: 45%;
    max-height: 80%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    display: flex;
    flex-direction: column;
}
#description-container, #description-container-photo {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}
#description-title, #description-title-photo {
    font-size: 24px;
    font-weight: bold;
    color: var(--vm-brand);
    margin: 30px 0 20px 0;
    text-align: center;
}
#description-footer, #description-footer-photo {
    background-color: #fff;
    border-top: 1px solid #e1e1e1;
    padding: 10px 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    justify-content: space-between;
    border-radius: 0 0 10px 10px;
}
#description-footer button, #description-footer-photo button {
    background-color: #045cb4;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 17.5px;
    transition: background-color 0.3s, transform 0.3s;
}
#description-footer button:hover, #description-footer-photo button:hover {
    background-color: #034a91;
}
#add-more-photos, #add-more-photos-photo {
    background-color: #ffffff !important;
    color: #045cb4 !important;
    border: 2.3px solid #045cb4 !important;
}
#add-more-photos:hover, #add-more-photos-photo:hover {
    background-color: #045cb4 !important;
    color: #fff !important;
}
#description-close, #description-close-photo {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 18px;
    cursor: pointer;
    color: #1e293b;
    font-weight: 600;
    margin-right: 5px;
}
.image-description-entry {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.image-description-entry .img-wrapper {
    position: relative;
    margin-right: 10px;
}
.image-description-entry .img-wrapper img {
    min-width: 120px;
    max-width: 120px;
    min-height: 70px;
    max-height: 70px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: zoom-in;
}
.image-description-entry .img-wrapper .remove-description-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #1e293b;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 17px;
    border-radius: 50%;
    height: 24px;
    width: 24px;
    padding: 0px 1px 2px 1px;
}
.image-description-entry .img-wrapper .remove-description-image:hover {
    background: #111827;
}
.textarea-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.textarea-container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc !important;
    border-radius: 5px;
    margin-bottom: 2px;
    resize: none;
}
.textarea-container textarea:focus {
    border: 1px solid #1e293b !important;
}
.textarea-container .description-char-count {
    font-size: 12px;
    color: #808285;
    text-align: right;
    margin-top: -3px;
}

/* --- MODAL de VISTA PREVIA de imágenes --- */
#image-preview-modal, #image-preview-modal-photo {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
}
#image-preview-overlay, #image-preview-overlay-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
#image-preview-content, #image-preview-content-photo {
    background-color: #fff;
    border-radius: 10px;
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    text-align: center;
}
#image-preview-close, #image-preview-close-photo {
    position: absolute;
    top: -15px;
    right: -20px;
    height: 40px;
    width: 40px;
    padding: 6px;
    background: white;
    border-radius: 100%;
    font-size: 18px;
    cursor: pointer;
    color: #1e293b;
    font-weight: 600;
    margin-right: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
}
#image-preview-close:hover, #image-preview-close-photo:hover {
    color: #666;
}
#image-preview-img, #image-preview-img-photo {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

/* --- LOADING OVERLAY --- */
.vm-loading {
    display: none;
    position: fixed;
    inset:0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    text-align: center;
    padding-top: 20%;
    font-size: 20px;
    color: #333;
}
#loading-spinner, #loading-spinner-photo {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- INDICADOR AVANZADO SUBIDA --- */
#rv-progress-head { padding: 0 0; margin-bottom: 8px; }
#rv-upload-progress.vm-upload {
  align-items:center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--vm-upload-bg);
  border: 1px solid var(--vm-border);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(2,6,23,0.04);
  width: 100%;
  box-sizing: border-box;
}
.vm-upload[hidden]{ display:none !important; }
.vm-upload.show{ display:flex; }
#rv-upload-progress .vm-upload-label{
  display:flex;
  flex-direction: row;
  gap:4px;
  min-width: 160px;
  font-size:13px;
  color: #0f172a;
}
#rv-upload-progress .vm-upload-label .small{
  color:#475569;
  font-variant-numeric: tabular-nums;
  font-size:12px;
}
#rv-upload-progress .vm-upload-bar{
  flex:1 1 auto;
  height: 12px;
  margin: 0;
  background: var(--vm-track);
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.04);
}
#rv-upload-bar-fill.vm-upload-bar-fill{
  height:100%;
  width:0%;
  background: linear-gradient(90deg, var(--vm-accent), color-mix(in srgb, var(--vm-accent) 85%, white));
  position: relative;
  transition: width .14s linear, box-shadow .22s ease;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset;
}
@media (prefers-reduced-motion: no-preference){
  #rv-upload-bar-fill.vm-upload-bar-fill::after{
    content: "";
    position:absolute;
    inset:0;
    background: repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.18) 0,
      rgba(255,255,255,.18) 12px,
      rgba(255,255,255,.30) 12px,
      rgba(255,255,255,.30) 24px
    );
    animation: vm-stripes 1.1s linear infinite;
    mix-blend-mode: overlay;
    pointer-events:none;
    opacity: .45;
  }
  @keyframes vm-stripes { to { transform: translateX(24px); } }
}
#rv-upload-progress.is-complete #rv-upload-bar-fill{
  background: linear-gradient(90deg, var(--vm-accent-2), color-mix(in srgb, var(--vm-accent-2) 85%, white));
  box-shadow: 0 0 0 1px rgba(0,0,0,.02) inset, 0 1px 0 rgba(0,0,0,.03) inset;
}
#rv-upload-progress.is-complete #rv-upload-bar-fill::after{ animation: none; opacity: 0; }

/* Botón cancelar integrado */
#rv-upload-progress #cancel-upload,
#rv-progress-head #cancel-upload{
  appearance: none;
  -webkit-appearance:none;
  background: transparent;
  border: 1px solid transparent;
  color: var(--vm-brand-700);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
  box-shadow: 0 1px 0 rgba(2,6,23,0.03);
}
#rv-upload-progress #cancel-upload {
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.55));
  border: 1px solid rgba(9, 30, 66, 0.06);
}
#rv-upload-progress #cancel-upload:hover{
  background: color-mix(in srgb, #fff 80%, var(--vm-danger) 6%);
  color: var(--vm-danger);
  border-color: rgba(179,45,46,.12);
}
#rv-upload-progress #cancel-upload:focus{ outline: none; box-shadow: 0 0 0 4px color-mix(in srgb, var(--vm-danger) 10%, transparent); }

/* --- REGLAS COMUNES Y MENSAJERÍA --- */

/* Botones sensibles disabled al subir fotos */
.vm-disabled { opacity: .6; pointer-events: none; cursor: not-allowed; }

/* Errores tooltip */
.error-tooltip {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px;
    position: absolute;
    z-index: 1000;
    border-radius: 5px;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    left: 30%;
    margin-top: -10px;
}
.error-tooltip .error-icon {
    margin-right: 5px;
    font-size: 18px;
}

/* ====== RESPONSIVE ====== */

/* Tablets grandes */
@media screen and (max-width: 1024px) {
    .vm-page.vm-form-layout{
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0;
    }
    .vm-right{
        border-left: none;
        padding-left: 0;
    }
    .vm-left-inner{
        position: static;
    }
    .vm-biz-card{
        display: grid;
        grid-template-columns: 150px 1fr;
        align-items: center;
        gap: 12px;
    }
    .vm-biz-media{
        padding: 0;
        height: 100%;
    }
    .vm-biz-thumb,
    .vm-biz-thumb--placeholder{
        border-radius: 10px 0 0 10px;
        aspect-ratio: 4 / 3;
        width: 100%;
        height: 100%;
        min-height: 110px;
        object-fit: cover;
    }
    .vm-biz-body{
        padding: 10px 12px 10px 0;
    }
    .vm-biz-title{
        font-size: 16.5px;
        margin: 0 0 6px;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .vm-biz-meta{
        font-size: 13px;
        gap: 6px;
    }
    .vm-biz-meta .vm-biz-meta-text{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.35;
    }
    .vm-left-inner{ position: static; }
    
    #image-description-content, #image-description-content-photo {
        width: 65%;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .vm-page.vm-form-layout{ max-width: 100%; margin: 16px auto 56px; }

    .vm-biz-card{ grid-template-columns: 108px 1fr; gap: 12px; }
    .vm-biz-body{ padding: 15px 10px 8px 0; }
    .vm-biz-title{ font-size: 16px; padding-bottom: 1px; }
    p.vm-biz-meta{ font-size: 13.5px; }
    
    .vm-form-card{ border: none; box-shadow: none; padding: 0; }
    #rating-value { max-width: calc(100% - 10px); }
    .vm-thumb { margin: 0; }
    #image-description-content, #image-description-content-photo { width: 92%; max-height: 90%; }
    #rv-upload-progress.vm-upload { flex-direction: column; align-items: stretch; gap:8px; }
    #rv-upload-progress .vm-upload-label { min-width: 0; align-items:flex-start; }
    #rv-upload-progress #cancel-upload { align-self:flex-end; }

    .image-description-entry {
        flex-direction: column;
        align-items: center;
    }
    .image-description-entry .img-wrapper img {
        min-width: 200px;
        max-width: 200px;
        min-height: 100px;
        max-height: 100px;
    }
    .textarea-container textarea {
        width: 100%;
    }

    #description-footer, #description-footer-photo {
        gap: 10px;
        padding: 10px;
    }

    #loading-overlay {
        padding-top: 50%;
    }
}