/* =============================================
   DESAYUNOS AVANTIC — Design System
   Fondo aleatorio + paneles oscuros semitransparentes
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Panel oscuro semitransparente — base de todo */
    --panel:        rgba(15, 12, 10, 0.72);
    --panel-light:  rgba(15, 12, 10, 0.55);
    --panel-heavy:  rgba(10, 8, 6, 0.85);
    --panel-border: rgba(255, 255, 255, 0.10);
    --panel-hover:  rgba(255, 255, 255, 0.04);

    /* Texto sobre fondo oscuro */
    --text:         #F5F3F0;
    --text-mid:     #A8A29E;
    --text-light:   #78716C;

    /* Acento naranja tostado */
    --accent:       #EA580C;
    --accent-hover: #C2410C;
    --accent-soft:  rgba(234, 88, 12, 0.18);

    /* Estados */
    --success:      #22C55E;
    --success-bg:   rgba(34, 197, 94, 0.15);
    --danger:       #EF4444;
    --danger-bg:    rgba(239, 68, 68, 0.15);
    --warning:      #F59E0B;
    --warning-bg:   rgba(245, 158, 11, 0.15);
    --info-bg:      rgba(59, 130, 246, 0.15);
    --info:         #60A5FA;

    --radius:       8px;
    --radius-lg:    12px;
    --shadow:       0 4px 24px rgba(0,0,0,.35);
    --shadow-md:    0 8px 32px rgba(0,0,0,.50);
}

html { font-size: 15px; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;

    /* Fondo se aplica via JS — fallback */
    background: #1a1210 no-repeat center center fixed;
    background-size: cover;
}

/* Overlay oscuro sutil sobre el fondo para mejorar legibilidad */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
    pointer-events: none;
}

/* Todo el contenido por encima del overlay */
.navbar, .main-content, .login-body > *, .modal-overlay {
    position: relative;
    z-index: 1;
}

/* =============================================
   LOGIN
   ============================================= */
.login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container { width: 100%; max-width: 380px; padding: 20px; }

.login-card {
    background: var(--panel-heavy);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    text-align: center;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.login-card img { width: 80px; height: 80px; margin-bottom: 16px; }

.login-card h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.login-subtitle {
    color: var(--text-mid);
    font-size: 0.875rem;
    margin-bottom: 28px;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 11px 20px;
    border: 1.5px solid var(--panel-border);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.08);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .15s;
    font-family: inherit;
    backdrop-filter: blur(6px);
}

.btn-google:hover {
    background: rgba(255,255,255,0.14);
    border-color: var(--accent);
}

.login-note {
    margin-top: 14px;
    font-size: 0.78rem;
    color: var(--text-light);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    background: var(--panel-heavy);
    border-bottom: 1px solid var(--panel-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0 24px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -.01em;
}

.navbar-brand img {
    width: 26px;
    height: 26px;
    border-radius: 4px;
}

.navbar-nav { display: flex; gap: 2px; }

.nav-link {
    color: var(--text-mid);
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all .15s;
}

.nav-link:hover { color: var(--text); background: rgba(255,255,255,.07); }
.nav-link.active { color: var(--text); background: rgba(255,255,255,.1); }

.navbar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-mid);
}

.navbar-user img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--panel-border);
}

.btn-logout {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.8rem;
    padding: 4px 10px;
    border: 1px solid var(--panel-border);
    border-radius: 5px;
    transition: all .15s;
}

.btn-logout:hover { color: var(--text); border-color: rgba(255,255,255,.25); }

/* =============================================
   LAYOUT
   ============================================= */
.main-content {
    max-width: 1100px;
    margin: 28px auto;
    padding: 0 20px;
}

.page-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -.02em;
}

/* =============================================
   CARD — panel oscuro semitransparente
   ============================================= */
.card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* =============================================
   BOTONES
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    font-family: inherit;
    transition: all .15s;
    white-space: nowrap;
}

.btn-primary   { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }

.btn-success   { background: rgba(34,197,94,.85); color: #fff; }
.btn-success:hover { background: rgba(34,197,94,1); }

.btn-danger    { background: rgba(239,68,68,.85); color: #fff; }
.btn-danger:hover  { background: rgba(239,68,68,1); }

.btn-secondary {
    background: rgba(255,255,255,.08);
    color: var(--text-mid);
    border: 1px solid var(--panel-border);
}
.btn-secondary:hover { background: rgba(255,255,255,.13); color: var(--text); }

.btn-whatsapp  { background: rgba(37,211,102,.85); color: #fff; }
.btn-whatsapp:hover { background: rgba(37,211,102,1); }

.btn-sm { padding: 5px 10px; font-size: 0.8rem; }
.btn:disabled { opacity: .35; cursor: not-allowed; }

/* =============================================
   FORMULARIOS
   ============================================= */
.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.form-control {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid var(--panel-border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text);
    background: rgba(255,255,255,.07);
    transition: border-color .15s, box-shadow .15s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(234,88,12,.2);
    background: rgba(255,255,255,.10);
}

/* select options legibles */
.form-control option { background: #1a1210; color: var(--text); }

.form-control-sm { padding: 6px 10px; font-size: 0.85rem; }

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text);
}

.form-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
    cursor: pointer;
}

.form-options { display: flex; gap: 24px; flex-wrap: wrap; }
.form-actions { display: flex; gap: 8px; margin-top: 8px; }

/* =============================================
   FOOD TYPE CARDS
   ============================================= */
.food-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
    margin-top: 4px;
}

.food-type-card { position: relative; cursor: pointer; }

.food-type-card input[type="radio"] {
    position: absolute; opacity: 0; width: 0; height: 0;
}

.food-type-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 8px;
    border: 1.5px solid var(--panel-border);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.06);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-mid);
    text-align: center;
    transition: all .15s;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.food-type-icon { font-size: 1.6rem; line-height: 1; }

.food-type-card input:checked + .food-type-label {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--text);
    box-shadow: 0 0 0 3px rgba(234,88,12,.2);
}

.food-type-label:hover {
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.10);
    color: var(--text);
}

/* =============================================
   TABLAS
   ============================================= */
.table-container { overflow-x: auto; }

table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }

thead th {
    background: rgba(255,255,255,.05);
    color: var(--text-mid);
    padding: 9px 14px;
    text-align: left;
    font-weight: 500;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-bottom: 1px solid var(--panel-border);
}

tbody td {
    padding: 11px 14px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    color: var(--text);
}

tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--panel-hover); }

/* =============================================
   BADGES
   ============================================= */
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.badge-success { background: var(--success-bg); color: var(--success); }
.badge-warning { background: var(--warning-bg); color: var(--warning); }
.badge-danger  { background: var(--danger-bg);  color: var(--danger); }
.badge-info    { background: var(--info-bg);     color: var(--info); }

/* =============================================
   ALERTAS
   ============================================= */
.alert {
    padding: 11px 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
}

.alert-success { background: var(--success-bg); color: var(--success); border: 1px solid rgba(34,197,94,.3); }
.alert-danger  { background: var(--danger-bg);  color: var(--danger);  border: 1px solid rgba(239,68,68,.3); }
.alert-info    { background: var(--info-bg);     color: var(--info);    border: 1px solid rgba(59,130,246,.3); }

/* =============================================
   LISTADO
   ============================================= */
.list-header { margin-bottom: 16px; }

.list-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.whatsapp-controls { flex: 0 0 300px; }

.whatsapp-controls h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 14px;
}

.management-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 2px;
}

.hour-picker { display: flex; align-items: center; gap: 6px; }
.hour-picker span { font-weight: 600; color: var(--text-mid); }
.hour-picker .form-control { width: auto; }

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

/* =============================================
   ADMIN
   ============================================= */
.admin-layout { display: flex; gap: 22px; align-items: flex-start; }

.admin-menu {
    flex: 0 0 170px;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius-lg);
    padding: 14px;
    position: sticky;
    top: 72px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.admin-menu h4 {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-light);
    margin-bottom: 10px;
    padding: 0 4px;
}

.admin-menu-link {
    display: block;
    padding: 7px 10px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2px;
    transition: all .15s;
}

.admin-menu-link:hover { background: rgba(255,255,255,.07); color: var(--text); }
.admin-menu-link.active { background: var(--accent-soft); color: var(--accent); }

.admin-content { flex: 1; min-width: 0; }

.section-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 14px;
}

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

.business-header .section-title { margin-bottom: 0; }

.form-inline-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
}

.form-group-inline { margin-bottom: 0; flex: 1; min-width: 180px; }

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-box {
    background: var(--panel-heavy);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px);
}

.modal-box h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text);
}

/* =============================================
   INFO / CRÉDITOS
   ============================================= */
.info-header-inner { display: flex; align-items: center; gap: 28px; }
.info-logo { width: 96px; height: 96px; flex-shrink: 0; }

.info-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.03em;
    margin-bottom: 4px;
}

.info-version {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.info-desc { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 10px; }

.info-avantic-link, .info-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.info-avantic-link:hover, .info-link:hover { text-decoration: underline; }

.credits-table { border-collapse: collapse; width: 100%; font-size: 0.9rem; }
.credits-table tr { border-bottom: 1px solid var(--panel-border); }
.credits-table tr:last-child { border-bottom: none; }

.credits-label {
    padding: 10px 0;
    color: var(--text-mid);
    font-weight: 500;
    font-size: 0.825rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    width: 220px;
}

.credits-value { padding: 10px 0; color: var(--text); }

.version-content { font-size: 0.9rem; }

.ver-h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 20px 0 4px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.ver-h2:first-child { margin-top: 0; }
.ver-h3 { font-size: 0.875rem; font-weight: 600; color: var(--accent); margin: 12px 0 2px; }
.ver-h4 { font-size: 0.8rem; font-weight: 500; color: var(--text-mid); margin: 8px 0 2px; font-style: italic; }
.ver-category { font-size: 0.825rem; font-weight: 600; color: var(--text-mid); margin: 8px 0 2px; }
.ver-list { margin: 4px 0 8px 18px; color: var(--text-mid); line-height: 1.7; }
.ver-list li { margin-bottom: 2px; }

/* =============================================
   UTILIDADES
   ============================================= */
.text-muted  { color: var(--text-light); }
.text-sm     { font-size: 0.8rem; }
.text-center { text-align: center; }

.empty-state { text-align: center; padding: 40px 20px; color: var(--text-mid); }
.empty-state p { margin-bottom: 16px; font-size: 0.9rem; }

/* =============================================
   PEDIDO — centrado vertical + horizontal
   ============================================= */
.pedido-wrapper {
    min-height: calc(100vh - 52px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
}

.pedido-card {
    width: 100%;
    max-width: 600px;
    margin-bottom: 0;
}

.pedido-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.pedido-title-center {
    flex: 1;
    text-align: center;
}

.pedido-nav-left,
.pedido-nav-right {
    flex: 0 0 40px;
    display: flex;
    align-items: center;
}

.pedido-nav-right { justify-content: flex-end; }

.pedido-date-label {
    display: block;
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 500;
    margin-top: 2px;
    letter-spacing: .03em;
}

/* =============================================
   LISTADO — alinear controles con la tabla
   ============================================= */
.list-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
    /* Sin max-width propio — hereda el main-content */
}

.list-top-block {
    /* Mismo ancho que el resto del contenido */
    width: 100%;
}

/* =============================================
   LISTADO — bloque principal centrado con margen
   ============================================= */
.listado-block {
    max-width: 1100px;
    margin: 28px auto;
    padding: 0 32px;   /* margen izquierdo y derecho */
}

.listado-block .page-title {
    text-align: center;
    margin-bottom: 20px;
}

.listado-outer {
    /* contenedor mínimo sin padding propio — listado-block lo gestiona */
    position: relative;
    z-index: 1;
}

/* =============================================
   LISTADO — panel superior con votos
   ============================================= */
.list-top-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.votes-card, .whatsapp-controls, .actions-card {
    flex: 1 1 220px;
    min-width: 200px;
}

.votes-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 12px;
}

.votes-list { display: flex; flex-direction: column; gap: 8px; }

.vote-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.vote-name {
    width: 80px;
    flex-shrink: 0;
    color: var(--text-mid);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vote-bar-wrap {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,.1);
    border-radius: 3px;
    overflow: hidden;
}

.vote-bar {
    display: block;
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    transition: width .3s;
}

.vote-count {
    width: 20px;
    text-align: right;
    font-weight: 700;
    color: var(--text);
}

.vote-crown { font-size: 0.85rem; }

.vote-top .vote-name { color: var(--text); font-weight: 600; }
.vote-top .vote-bar  { background: var(--success); }

/* Acciones card */
.actions-hint {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.actions-btn-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.actions-btn-group .btn,
.actions-btn-group form { width: 100%; }
.actions-btn-group form .btn { width: 100%; }

/* =============================================
   FOOD TYPE CARDS — imagen real
   ============================================= */
.food-type-img {
    width: 64px;
    height: 48px;
    object-fit: contain;
    display: block;
}

/* =============================================
   NEGOCIO — enlace fotos
   ============================================= */
.business-label-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.business-label-row label { margin-bottom: 0; }

.business-photo-link {
    font-size: 0.78rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    opacity: .85;
    transition: opacity .15s;
}

.business-photo-link:hover { opacity: 1; text-decoration: underline; }

/* =============================================
   VISOR DE FOTOS DE NEGOCIO
   ============================================= */
.photos-modal-box {
    background: var(--panel-heavy);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 560px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.photos-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--panel-border);
}

.photos-modal-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.photos-close-btn {
    background: none;
    border: none;
    color: var(--text-mid);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all .15s;
}

.photos-close-btn:hover { background: rgba(255,255,255,.1); color: var(--text); }

.photos-modal-body { padding: 20px; }

.photos-viewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.photo-nav-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--panel-border);
    background: rgba(255,255,255,.08);
    color: var(--text);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}

.photo-nav-btn:hover { background: rgba(255,255,255,.15); }

.photo-main-img {
    flex: 1;
    max-height: 340px;
    width: 100%;
    object-fit: contain;
    border-radius: var(--radius);
    display: block;
}

.photo-counter {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-mid);
    margin-bottom: 12px;
}

.photo-thumbnails {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.photo-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: .6;
    transition: all .15s;
}

.photo-thumb:hover { opacity: 1; }
.photo-thumb-active { border-color: var(--accent); opacity: 1; }

/* =============================================
   ADMIN — fotos de negocios
   ============================================= */
.business-photos-admin {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.business-photo-thumb-admin {
    width: 80px;
}

.admin-photo-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--panel-border);
    display: block;
}

/* =============================================
   NEGOCIO — enlaces en línea (fotos + ubicación)
   ============================================= */
.business-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* =============================================
   LOGIN — mensaje de logout
   ============================================= */
.logout-message {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--success);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 20px;
}
