#PR .container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
}

#PR h1 {
    text-align: center;
    margin-bottom: 20px;
}

#PR .product {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#PR .product-image img {
    max-width: 100%;
    border-radius: 10px;
}

#PR .product-details {
    flex: 1;
    margin-left: 20px;
}

#PR .product-details h2 {
    margin-top: 0;
}

#PR label {
    display: block;
    margin: 10px 0 5px;
}

#PR select, input, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

#PR button {
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border: none;
}

#PR button:hover {
    background-color: #0056b3;
}


@media (max-width: 600px) {
    .product {
        flex-direction: column;
        align-items: center;
    }

    #PR .product-details {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
}