/**
 * Vendor Account Info — minimal styles. Most styles (sidebar/.vp-page-wrap/
 * .vp-nav-link/.vp-msg/.btn-yellow) come from vendor-profile-manager's CSS.
 * Only the WeddingDive Button cards need their own touch-up.
 */

.vai-btn-card {
    background: #fff;
    transition: box-shadow 0.2s ease;
    height: 100%;
}
.vai-btn-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.vai-btn-preview {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vai-btn-preview img {
    max-width: 100%;
    height: auto;
}
.vai-code-textarea {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 12px;
    line-height: 1.5;
    background: #f6f8fa;
}

/* Yellow modal header — matches Angular WeddingDive Button modal */
.vai-modal-header-yellow {
    background: #ffd700;
    border-bottom: none;
}
.vai-modal-header-yellow .modal-title {
    font-weight: 700;
    font-size: 15px;
    color: #000;
    line-height: 1.4;
}
.vai-modal-header-yellow .close {
    color: #000;
    opacity: 1;
}

/* Match VPM's active-link highlighting for the sidebar */
.vai-nav-link.active {
    background: #ffd700;
    color: #000;
    font-weight: 600;
}

/* Pagination */
.vp-pg-btn {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
}
.vp-pg-btn:hover { background: #f5f5f5; text-decoration: none; }
.vp-pg-btn.vp-pg-active { background: #ffd700; border-color: #ffd700; font-weight: 700; color: #000; }
.vp-pg-ellipsis { display: inline-block; padding: 4px 6px; font-size: 13px; color: #999; }

/* Restore native dropdown arrow (theme overrides remove it) */
.vp-page-wrap select.form-control {
    -webkit-appearance: auto !important;
    appearance: auto !important;
}

/* Keep arrow visible on disabled selects, just grayed out */
.vp-page-wrap select.form-control:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
