.subscription-wrapper {
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
    min-height: 45vh;          /* take most of viewport height */
    padding: 20px;
}

/* Subscription card */
.subscription-expired {
    background-color: #fff3f3;
    border: 1px solid #ff4d4f;
    border-radius: 20px;
    padding: 30px 40px;
    width: 60%;
    display: flex;
    flex-direction: column;    /* stack text and button vertically */
    justify-content: center;   /* vertical centering inside card */
    align-items: center;       /* horizontal centering */
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: transform 0.2s ease;
}

.subscription-expired:hover {
    transform: translateY(-2px);
}

.subscription-expired p {
    margin: 0;
    color: #d4380d;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;       /* center text inside card */
}

.subscription-expired .renew-btn {
    background-color: #ff4d4f;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.subscription-expired .renew-btn:hover {
    background-color: #d4380d;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


.error-wrapper {
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
    min-height: 45vh;          /* take most of viewport height */
    padding: 20px;
}

/* Subscription card */
.error-card {
    background-color: #fff3f3;
    border: 1px solid #ff4d4f;
    border-radius: 20px;
    padding: 30px 40px;
    width: 60%;
    display: flex;
    flex-direction: column;    /* stack text and button vertically */
    justify-content: center;   /* vertical centering inside card */
    align-items: center;       /* horizontal centering */
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: transform 0.2s ease;
}

.error-card:hover {
    transform: translateY(-2px);
}

.error-card p {
    margin: 0;
    color: #d4380d;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;       /* center text inside card */
}

.message-card-wrapper {
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
    min-height: 45vh;          /* take most of viewport height */
    padding: 20px;
}

/* Subscription card */
.message-card {
    background-color: #d5ecff;
    border: 1px solid #4665ff;
    border-radius: 20px;
    padding: 30px 40px;
    width: 60%;
    display: flex;
    flex-direction: column;    /* stack text and button vertically */
    justify-content: center;   /* vertical centering inside card */
    align-items: center;       /* horizontal centering */
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: transform 0.2s ease;
}

.message-card:hover {
    transform: translateY(-2px);
}

.message-card p {
    margin: 0;
    color: #2c29bd;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;       /* center text inside card */
}