/*
Theme Name: Restaurantes Theme
Author: Tu Nombre
Description: Tema para gestión de restaurantes en WordPress
Version: 1.0
*/

body {
    font-family: Arial, sans-serif;
    background: #fff;
    margin: 0;
    padding: 0;
    color: #333;
}

.contenido {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

h1, h2 {
    color: #f08b18;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: #f08b18;
}

img {
    max-width: 100%;
    height: auto;
}






.btn-propietario {
    padding: 12px 24px;
    background-color: #000; /* negro puro */
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

.dialog-opciones {
    position: absolute;
    top: 60px; /* debajo del botón */
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    width: 220px;
    text-align: center;
}

.dialog-opciones a {
    display: block;
    padding: 12px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.dialog-opciones a:last-child {
    border-bottom: none;
}

.dialog-opciones a:hover {
    background-color: #f08b18;
    color: white;
}