body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #212529;
    color: rgb(222, 226, 230);
    scroll-behavior: smooth;
}

.header-image {
    text-align: center;
    margin: 10px;
}

.header-image img {
    height: 200px;
    width: 200px;
    padding: 5px;
    border-radius: 50%;
    border: 1px solid #333;
}

.navbar {
    width: 100%;
    text-align: center;
}

.nav-list {
    display: flex;
    list-style: none;
    padding: 20px;
    overflow-x: auto;
    margin: 0;
}

.nav-item {
    display: inline-block;
    margin-right: 20px;
    cursor: pointer;
}

.nav-link {
    text-decoration: none;
    color: rgb(222, 226, 230);
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid #b0bec5;
    border-radius: 5px;
    padding: 5px 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    background: #eee;
    color: #333;
    border-radius: 5px;
}

.menu-title {
    color: #eee;
    background-color: #53575B;
    padding: 10px 20px;
    margin: 0;
}

.menu-section {
    padding: 0px 20px 20px;
    border-bottom: 3px solid #53575B;
}

.menu-section-main {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.menu-section-description {
    margin-top: 0;
}

.price {
    color: #f6b8b8;
    font-weight: bold;
}

.menu-section-value {
    display: flex;
    align-items: center;
}

.menu-section-value p{
    margin: 3px 0 0 5px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    background-color: #212529;
}

section {
    scroll-margin-top: 120px;
}




html {
    width: 100%;
    height: 100%;
}

.body-main-content {
    width: 100%;
    height: 100%;
    background-color: #101214;
    background-image: url('bg.svg');
    background-repeat: repeat;
    background-size: auto;
    background-position-x: center;
}

.body-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: 0px 30px;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: #212529;
    background-clip: padding-box;
    border: 1px solid #333;
    border-radius: 2rem;
    outline: 0;
    color: rgb(222, 226, 230);
    padding: 0px 10px 50px;
}

.bottom_border {
    border-bottom: 2px solid #333;
}

.modal-content img {
    height: 100px;
    width: 100px;
}

.modal-content a {
    text-decoration: none;
    color: rgb(222, 226, 230);
}

.list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #333;
    border-radius: 5px;
    text-decoration: none;
    color: rgb(222, 226, 230);
}

.menu-icon,
.arrow-icon {
    width: 24px;
    height: 24px;
    color: rgb(222, 226, 230);
}
.content-area {
    flex-grow: 1;
    padding: 0 15px;
}
.title {
    font-size: 18px;
    font-weight: bold;
}
.description {
    font-size: 14px;
    color: #666;
}
.pool-icon img{
    width: 20px;
    height: 20px;
    contain: content;
}