#wpr-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
}

#wpr-form h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input[type="url"],
.form-group input[type="text"],
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#wpr-form .wpr-add-button {
    background-color: transparent;
    color: #ED7E38;
    padding: 10px 15px;
    border: 4px solid #ED7E38;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 15px;
}

#wpr-form .wpr-add-button:hover {
    color: white;
    background-color: #d8692f;
}

input[type="submit"] {
    background-color: #d8692f;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

input[type="submit"]:hover {
    background-color: #c0581e;
}

#product-links-container {
    margin-bottom: 15px;
}

#product-links-container .form-group {
    position: relative;
}

#product-links-container .remove-product-link {
    margin-left: 10px;
    color: red;
    cursor: pointer;
    font-size: 14px;
}

#product-links-container .remove-product-link:hover {
    text-decoration: underline;
}

.contact-info {
    text-align: center;
    margin-top: 20px;
    color: red;
    font-weight: bold;
}

/* Media Queries */
@media (max-width: 768px) {
    #wpr-form {
        padding: 15px;
    }

    .form-group label,
    .form-group input,
    .form-group select,
    .wpr-add-button,
    input[type="submit"] {
        font-size: 16px;
    }
}
