
    /* ======================================================
   GLOBAL PANEL-DEFAULT OVERRIDE (WHMCS SAFE)
====================================================== */

/* Base panel */
.panel.panel-default {
    border: none;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    background: #ffffff;
    overflow: hidden;
    margin-bottom: 24px;
}

/* Panel heading */
.panel.panel-default > .panel-heading {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 20px;
}

/* Title */
.panel.panel-default > .panel-heading .panel-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

/* Panel body */
.panel.panel-default > .panel-body {
    padding: 20px;
    color: #374151;
}

/* Centered panel body (like Addons & Extras) */
.panel.panel-default > .panel-body.text-center {
    text-align: center;
}

/* Forms inside panel */
.panel.panel-default .form-control {
    border-radius: 10px;
    height: 40px;
    font-size: 14px;
}

/* Small inputs */
.panel.panel-default .input-sm {
    height: 36px;
    border-radius: 8px;
}

/* Buttons */
.panel.panel-default .btn {
    border-radius: 10px;
    padding: 8px 16px;
    font-weight: 600;
}

/* Default button */
.panel.panel-default .btn-default {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #111827;
}

.panel.panel-default .btn-default:hover {
    background: #e5e7eb;
}

/* Icon spacing */
.panel.panel-default .btn i {
    margin-right: 6px;
}

/* Inline forms (Addons & Extras) */
.panel.panel-default .form-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* Select inside inline form */
.panel.panel-default .form-inline select {
    min-width: 220px;
}

/* Remove legacy panel borders */
.panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top: none;
}
/* ===============================
   PRODUCT UPGRADE BUTTON
================================ */

.btn-upgrade-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 20px;
    border-radius: 10px;

    background: linear-gradient(135deg, #427acf, #2f5fb3);
    color: #ffffff !important;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 6px 18px rgba(66,122,207,0.35);
    transition: all 0.2s ease;
}

.btn-upgrade-product i {
    font-size: 14px;
}

.btn-upgrade-product:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(66,122,207,0.45);
    text-decoration: none;
    color: #ffffff;
}

.btn-upgrade-product:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(66,122,207,0.35);
}
/* ===============================
   PRODUCT ACTIONS PANEL
================================ */

.product-actions-panel {
    margin-bottom: 24px;
}

/* Grid for buttons */
.product-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

/* Action button base */
.product-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 16px;
    border-radius: 12px;

    background: #f9fafb;
    border: 1px solid #e5e7eb;

    color: #111827;
    font-weight: 600;
    text-decoration: none;

    transition: all 0.2s ease;
}

/* Icon */
.product-action-btn i {
    font-size: 18px;
}

/* Hover */
.product-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    text-decoration: none;
}

/* Variants */
.product-action-btn.upgrade {
    border-left: 4px solid #2563eb;
}

.product-action-btn.password {
    border-left: 4px solid #f59e0b;
}

.product-action-btn.cpanel {
    border-left: 4px solid #16a34a;
}

/* Mobile */
@media (max-width: 768px) {
    .product-actions-

