/* Pricing card overrides: fix text-align inherited from theme, border-style for preflight:false, tooltip buttons */

/* theme.css sets main > section { text-align:center } — override for pricing cards */
#pricing .tw-grid article {
    text-align: left;
}
#pricing .tw-grid article h6 {
    text-align: center;
}
/* With Tailwind preflight:false, border-style defaults to none — fix for card borders */
#pricing .tw-grid article {
    border-style: solid;
}
/* Plan description: 16px / line-height 1.5, remove Bootstrap default margin-bottom */
#pricing .tw-grid > article > div > p.tw-text-sm.tw-text-slate-600 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
}
/* Yearly price: remove Bootstrap default margin-bottom */
#pricing .pricing-card-header p.tw-text-slate-500 {
    margin-bottom: 0;
}
/* Developer card: shift title up to align with other cards (badge adds extra top padding) */
#pricing-plan-developer h6 {
    margin-top: -10px;
}
/* Reset Bootstrap button defaults for tooltip icons */
button.wpstg-tip {
    padding: 0;
    background: transparent;
    border-width: 1px;
    border-style: solid;
    border-color: #e2e8f0;
    line-height: 1;
    cursor: pointer;
    box-shadow: none;
    vertical-align: middle;
}
button.wpstg-tip:hover {
    background-color: #f8fafc;
    color: #475569;
}
button.wpstg-tip:focus {
    outline: none;
    box-shadow: none;
}
/* Tooltip element */
#wpstg-tip {
    border-style: solid;
}
#wpstg-tip a {
    pointer-events: auto;
    cursor: pointer;
}
