[type="submit"]:hover { background:#CC4949; }
.call-button.submit-like-button {
    all: unset; /* Reset all inherited styles */
    display: inline-block; /* Inline-block to behave like a button */
    width: 100%; /* Full width */
    max-width: 420px; /* Adjust based on your layout */
    padding: 10px; /* Padding for button appearance */
    background-color: #CC6666; /* Button background color */
    color: white; /* Text color */
    font-size: 24px; /* Font size */
    font-weight: 700; /* Font weight */
    text-align: center; /* Center the text */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor */
    transition: background 0.3s; /* Smooth background transition */
    margin-top: 10px; /* Margin for spacing */
}

.call-button.submit-like-button:hover {
    background-color: #CC4949; /* Darker shade on hover */
}

