/* Header icon — replaces the old "fa fa-id-card amber p-4" icon.
   The icon sits inside the card (not floating above it), so the form-header
   uses standard p-4 padding rather than the 50px floating-icon variant.
   margin-top: 0 cancels the base -78px rule; margin-bottom gives clean
   spacing between the circle and the "SUBSCRIPTION STATUS" title. */
.vss-form-header {
    padding-top: 24px !important;
}
.vss-icon-outer {
    margin-top: 0 !important;
    margin-bottom: 10px;
}
.vss-icon-circle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    border-radius: 50% !important;
    background: #ffd700 !important;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.vss-header-icon {
    width: 36px !important;
    height: 36px !important;
    object-fit: contain !important;
}

/* Status message */
.vss-status-msg {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Links section */
.vss-links-heading {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.vss-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vss-link {
    font-size: 15px;
    color: #1565c0;
    text-decoration: none;
}

.vss-link:hover { text-decoration: underline; }

.vss-delete-link { color: #c62828; }

/* Plan detail line */
.vss-plan-detail {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Modal — matches wed-user-profile .wup-modal-* pattern */
.vss-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.vss-modal-box {
    background: #fff;
    width: 400px;
    max-width: 94vw;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    overflow: hidden;
}

.vss-modal-header {
    background: #ffd700;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vss-modal-title {
    font-weight: 600;
    font-size: 17px;
    color: #222;
}

.vss-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    line-height: 1;
    padding: 0 4px;
}
.vss-modal-close:hover { color: #000; }

.vss-modal-body {
    padding: 20px 18px 10px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.vss-modal-body p { margin: 0 0 8px; }

.vss-modal-footer {
    padding: 12px 18px 18px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.vss-modal-btn {
    padding: 8px 22px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .15s;
}
.vss-modal-btn:hover { opacity: .85; }
.vss-modal-btn-yes { background: #ffd700; color: #222; }
.vss-modal-btn-no  { background: #e0e0e0; color: #333; }

.vss-cancel-msg {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
}
.vss-cancel-msg.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.vss-cancel-msg.error   { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }
