/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 /* .by-hotel-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
}

.by-hotel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.by-hotel-header {
    text-align: center;
    margin-bottom: 40px;
}

.by-hotel-title {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.by-hotel-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.by-hotel-info {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.by-hotel-description {
    margin-bottom: 30px;
}

.by-hotel-back {
    margin-top: 30px;
    text-align: center;
}

.by-hotel-back a {
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.by-hotel-back a:hover {
    background-color: #005177;
    text-decoration: none;
}

