/* cards/marketing_card/style.css */
#marketingCard .loading-overlay {
    background: rgba(255, 255, 255, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}
#marketingCard .loading-overlay.show {
    display: flex;
}
.modal-matrix {
    max-width: 1200px !important;
    width: 95% !important;
}
.modal-footer-links {
    display: flex;
    gap: 8px;
}
.modal-btn-matrix {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}
.modal-btn-matrix-primary {
    background: #f5576c;
    color: white;
    border: none;
}
.modal-btn-matrix-primary:hover {
    background: #d84558;
    transform: translateY(-1px);
}
.modal-btn-matrix-secondary {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
}
.modal-btn-matrix-secondary:hover {
    background: #e2e8f0;
}
.matrix-table th {
    font-weight: 800;
    color: #475569;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.matrix-table td, .matrix-table th {
    border-bottom: 1px solid #f1f5f9;
}
