/* Global styles */
body {
    padding-top: 15px;
    padding-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #d4cec1;
	line-height: 1.8;
}

.indent_text {
    margin-left: 50px;
    margin-right: 100px;
}

/* Header */.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center items in the navbar */
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #003f5c;
    border: 1px solid black;
    border-radius: 5px;
    margin-left: auto;
    margin-right: auto;
    min-width: 800px; /* Match the minimum width */
    max-width: 900px; /* Match the maximum width */
    width: 100%; /* Allow it to fill available space */
}

.navbar-brand {
    flex: 1;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    white-space: normal;
    margin-right: 1rem;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 0.5rem;
    margin-left: 1rem;
}

.nav-link {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
	padding: 0.5rem 2rem;
    transition: color 0.2s, background-color 0.2s, border 0.2s;
    border-radius: 5px;
    margin: 0 0.5rem;
    display: inline-block;
    box-sizing: border-box;
}

.nav-link:hover {
    color: #ffa801;
    border-color: rgba(255, 255, 255, 1);
}

.navbar-brand,
.nav-link {
    margin: 0 0.5rem;
}

/* Link Button */
.link-button {
    color: #003f5c;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 2rem;
    transition: color 0.2s, background-color 0.2s, border 0.2s;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0.5rem;
    display: inline-block;
    box-sizing: border-box;
    text-decoration: none;
}

.link-button:hover {
    color: #ffa801;
    border-color: rgba(255, 255, 255, 1);
}

/* Review section */
.container {
    margin: 0 auto; /* Center the container */
    padding: 0 1rem;
    min-width: 800px; /* Keep the container at least 800px wide */
}

.review {
	margin-top: 30px;
	background-color: #e3e3e3;
	padding: 20px;
	border: 1px solid #dee2e6;
	border-radius: 5px;
	border-color: black;
    min-width: 550px;
    max-width: 900px;
}

.review-info {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.review-info h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

.review-info h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #666;
    margin-top: 0;
}

.review-info p {
    font-size: 1.25rem;
}

.review-content {
    font-size: 1rem;
    line-height: 1.5;
    text-align: justify;
    overflow-x: auto;
    word-wrap: break-word;
}

.review-content p {
    margin-bottom: 1rem;
}


/* Recent reviews section */
.recent-reviews {
	background-color: #e3e3e3;
	border: 1px solid #dee2e6;
	border-radius: 5px;
	border-color: black;
	padding: 1rem;
	margin-top: 1rem;
	text-align: center;
    min-width: 550px;
    max-width: 900px;
}

.recent-reviews-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-reviews-list li {
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.recent-reviews-list a {
    color: #003f5c;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s;
}

.recent-reviews-list a:hover {
    color: #ffa801;
}

.review, .recent-reviews {
    margin: 20px auto; /* Center the sections */
    min-width: 800px; /* Set the minimum width for the review sections */
    max-width: 900px; /* Max width for consistency */
    width: 100%; /* Allow it to fill available space */
}

/* Past reviews section */
.past-reviews {
    margin-top: 30px;
    background-color: #e3e3e3; /* Background color for the section */
    padding: 20px;
    border: 1px solid black;
    border-radius: 5px;
    min-width: 800px; /* Minimum width to prevent shrinking */
    max-width: 900px; /* Maximum width for consistency */
    margin-left: auto; /* Center the section */
    margin-right: auto; /* Center the section */
}

/* Table styles */
.table {
    background-color: #f8f9fa; /* Background color for the table */
    border: 2px solid black; /* Thicker border for the table */
    width: 100%; /* Make the table fill the container */
    margin-top: 1rem; /* Space above the table */
}

.table th {
    background-color: #003f5c; /* Header color */
    color: #fff; /* Header text color */
    border-bottom: 2px solid black; /* Thicker border for header */
}

.table td {
    border: 1px solid black; /* Thicker border for cells */
    background-color: #ffffff; /* Cell background color */
}

/* Responsive table */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
    border: 0;
}

/* Section titles */
.section-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

h2.section-title {
    text-align: center;
    font-size: 2rem;
    color: #003f5c;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    body {
        overflow-x: auto; /* Allow horizontal scrolling for the entire page */
    }

    .navbar-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-container {
        padding: 0 0.5rem;
    }

    .review {
        padding: 10px;
    }

    .review-text {
        font-size: 300%;
    }

    .review-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .review-image {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .review-content {
        display: inline-block; /* Allow the content to expand */
        white-space: normal; /* Allow content to wrap */
    }
}