    /* Container styles */
    .review-container {
        max-width: 600px;
        margin: 0 auto;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #f9f9f9;
    }

    /* Heading styles */
    .review-container h2 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #333;
    }

    /* Detail styles */
    .review-details {
        margin-bottom: 20px;
    }

    .review-details span {
        display: block;
        margin-bottom: 10px;
        font-weight: bold;
    }

    /* Review form styles */
    .review-form {
        margin-top: 20px;
    }

    .review-form label {
        font-weight: bold;
    }

    .review-form textarea {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        border: 1px solid #ccc;
        border-radius: 5px;
        resize: vertical;
    }

    .review-form input[type="submit"] {
        padding: 10px 20px;
        background-color: #4CAF50;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    .review-form input[type="submit"]:hover {
        background-color: #45a049;
    }

    /* Existing review styles */
    .existing-review {
        margin-top: 20px;
        border-top: 1px solid #ccc;
        padding-top: 20px;
    }

    .existing-review h3 {
        margin-bottom: 10px;
        color: #333;
    }

    .existing-review p {
        margin-bottom: 10px;
    }