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

 /* Sticky header */
header {
    background-color: #fff;
    color: black;
    /* padding: 10px 20px; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    border-radius: 10px;
    top: 0;
    z-index: 1000;
}

/* Flexbox for header */
header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#login {
    display: flex;
    justify-content: flex-end;
}

#login button {
    background-color: #ff9900;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

#login button:hover {
    background-color: #e68a00;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #333;
    padding: 15px 0;
    border-radius: 5px;
    margin: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff9900;
}

/* Search bar */
#search-bar {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

main {
    padding: 20px;
}

h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 15px;
}

.review-page {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.review-section {
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.review-header {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.review-header img {
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    border-radius: 8px;
}

.review-rating {
    background-color: #ff9900;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
    color: white;
    font-weight: bold;
}

.review-content {
    flex: 2;
    padding: 0 20px;
}

.review-content h3 {
    font-size: 24px;
    color: #333;
}

.review-text {
    line-height: 1.8;
    color: #555;
    margin-top: 10px;
}

.review-aside {
    background-color: #f8f8f8;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1;
    width: 100%;
    max-width: 300px;
}

.review-aside h4 {
    margin-bottom: 10px;
    color: #333;
}

.review-aside ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.review-aside ul li {
    background-color: white;
    padding: 8px;
    margin-bottom: 8px;
    border-radius: 5px;
}

.review-aside ul li span {
    font-weight: bold;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}