/* Hide privacy/data form */
#data-form {
    display: none !important;
}

/* Text logo styling */
.text-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #E31C1C; /* ContinentalPost red */
    text-decoration: none;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.text-logo:hover {
    color: #B71C1C; /* darker red on hover */
}
/* Unsubscribe button styling */
#btn-unsub,
.unsub-form .button {
    background-color: #E31C1C !important;  /* primary red */
    color: #ffffff !important;             /* white text */
    border: none !important;
    border-radius: 4px;                    /* optional: soften corners */
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

/* Hover state */
#btn-unsub:hover,
.unsub-form .button:hover {
    background-color: #B71C1C !important;  /* darker red */
}

