/**
 * ===============================================================
 * Botones Unificados del Tema
 * ===============================================================
 */

/* --- Estilo Base del Botón --- */
.btn,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    font-family: 'Roboto', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease-in-out;
}

.btn svg {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

/* --- Botón Primario (Call to Action principal) --- */
.btn-primary,
.btn-primary:link,
.btn-primary:visited {
    background-color: #0073aa;
    color: #fff !important;
    border: 1px solid #0073aa;
}

.btn-primary:hover {
    background-color: #004494;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* --- Botón Secundario (Acciones menos importantes) --- */
.btn.btn-secondary {
    background-color: #ffffff;
    color: #333333;
    border-color: #dddddd;
}

.btn.btn-secondary:hover {
    background-color: #f8f8f8;
    border-color: #cccccc;
    transform: translateY(-2px);
}

/* --- Botón de Paginación --- */
.pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    border-radius: 6px;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination .page-numbers:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}

.pagination .page-numbers.current {
    background-color: #0056b3;
    color: #fff;
    border-color: #0056b3;
    font-weight: bold;
}

/* Estilo para los botones de acción en la página de la playa */
.action-button {
    background-color: transparent;
    border: none;
    color: #555;
    display: inline-flex;
    align-items: center;
    padding: 8px;
    border-radius: 8px;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.2s ease;
}

.action-button:hover {
    background-color: #f0f0f0;
    text-decoration-color: #555;
}

.action-button svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
} 