:root {
}
/* Color de fondo de los botones principales */
.btn-primary, .btn-success, .book-button {
    background-color: #2c3e50 !important; /* Cambia por tu color (ej. Azul Oscuro) */
    border-color: #2c3e50 !important;
}

/* Color al pasar el ratón por encima (hover) */
.btn-primary:hover, .btn-success:hover {
    background-color: #1a252f !important;
    border-color: #1a252f !important;
}
/* Color del texto del precio */
.price-amount, .total-price {
    color: #e74c3c !important; /* Rojo coral o el color de tu marca */
    font-weight: bold;
}
/* Fondo de la barra de fechas/filtros superior */
#search-bar-container, .search-engine-wrapper {
    background-color: #f8f9fa !important;
    border-bottom: 2px solid #ddd;
}

/* Color de los iconos de la búsqueda */
.search-engine-wrapper i {
    color: #2c3e50 !important;
}
/* Fondo general de la web de reservas */
body#octobook-body {
    background-color: #ffffff !important;
}

/* Cambiar color de todos los títulos */
h1, h2, h3, .room-name {
    color: #333333 !important;
}
/* Borde y sombra de cada habitación */
.room-container, .room-card {
    border: 1px solid #eee !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
}