/* =====================================================
   EZBizMail  WHMCS Client Area Custom Styles
   ===================================================== */

/* Hide Package/Domain panel (left column, first panel) */
.col-md-6:first-child > .panel.panel-default:first-of-type,
.col-md-6:first-child .panel.panel-default:first-of-type {
    display: none !important;
}

/* =====================================================
   Your Active Products/Services button colors (ALL rows)
   Source selectors:
   - Manage:  button.btn-custom-action
   - Stats:   button.btn-view-details
   - DNS:     a.btn-dns-setup
   Container: #servicesPanel
   ===================================================== */

/* MANAGE  light green */
#servicesPanel .div-service-buttons button.btn-custom-action {
    background-color: #86efac !important;
    border-color: #4ade80 !important;
    color: #064e3b !important;
    background-image: none !important;
}

/* STATS  light blue */
#servicesPanel .div-service-buttons button.btn-view-details {
    background-color: #7dd3fc !important;
    border-color: #38bdf8 !important;
    color: #0c4a6e !important;
    background-image: none !important;
}

/* DNS  yellow */
#servicesPanel .div-service-buttons a.btn-dns-setup {
    background-color: #fde047 !important;
    border-color: #facc15 !important;
    color: #78350f !important;
    background-image: none !important;
}

/* Hover polish */
#servicesPanel .div-service-buttons button.btn-custom-action:hover,
#servicesPanel .div-service-buttons button.btn-view-details:hover,
#servicesPanel .div-service-buttons a.btn-dns-setup:hover {
    filter: brightness(0.95);
}

/* =====================================================
   Mobile / narrow screens:
   Manage dropdown (caret)  light green
   ===================================================== */

/* Target the Manage dropdown toggle button */
#servicesPanel .btn-group-primary > button.dropdown-toggle {
    background-color: #86efac !important;
    border-color: #4ade80 !important;
    color: #064e3b !important;
}

/* Hover */
#servicesPanel .btn-group-primary > button.dropdown-toggle:hover {
    filter: brightness(0.95);
}

