body {
    font-family: Arial, sans-serif;
    background-color: white;
    margin: 0;
    padding: 20px;
    position: relative;
}

.container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

h2 {
    text-align: center;
    color: black;
}

.review {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.review h4 {
    margin: 0;
}

.review p {
    margin: 5px 0;
}

.home-link {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fa7416; /* Changed to orange */
    text-decoration: none;
    font-weight: bold;
}

.home-link:hover {
    text-decoration: underline;
}

.leave-review {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fa7416; /* Changed to orange */
    text-decoration: none;
    font-weight: bold;
}

.leave-review:hover {
    text-decoration: underline;
}

.review-container {
    position: relative;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-color: #f79736;
}

.delete-button-form {
    position: absolute;
    top: 10px;
    right: 10px;
}

.delete-button {
    background-color: #fa7416; /* Changed to orange */
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

.delete-button:hover {
    background-color: #cc8400; /* Darker shade of orange for hover */
    font-weight: bold;
}

h1 {
    text-align: center; /* Center-align header */
    color: black;
    font-family: 'Courier New', Courier, monospace;
}