/* =========================================
   1. CSS VARIABLES & DEFAULTS
   ========================================= */
:root {
    /* Colors (Dynamic from PHP) */
    --dm-scm-primary: #3e68ff;
    --dm-scm-secondary: #5a85ff;
    --dm-scm-bg: #ffffff;
    --dm-scm-font: inherit;
    --dm-scm-btn-hover: #ef3e63;
    --dm-scm-btn-hover-text: #ffffff;
    --dm-scm-btn-cont-bg: #f0f0f0;
    --dm-scm-btn-cont-text: #333333;
    --dm-scm-icon-w: 60px;
    --dm-scm-icon-bg: #008000;
    --dm-scm-icon-color: #ffffff;
    --dm-scm-upsell-bg: #ebefff;
    --dm-scm-upsell-border: #ebefff;
    --dm-scm-badge-up-bg: #3e68ff;
    --dm-scm-badge-up-text: #ffffff;
    --dm-scm-badge-ad-bg: #ebefff;
    --dm-scm-badge-ad-text: #3e68ff;
    --dm-scm-tooltip-bg: #f5f5f5;
    --dm-scm-tooltip-text: #333333;
    --dm-scm-price-sale: #d32f2f;
    --dm-scm-price-reg: #555555;
    --dm-scm-prog-text-col: #444444;

    /* Spacing & Radius (4-Directional - Dynamic from PHP) */
    --dm-scm-modal-pad: 20px 20px 20px 20px;
    --dm-scm-modal-mar: 0 0 0 0;
    --dm-scm-modal-rad: 20px 20px 20px 20px;
    
    --dm-scm-header-pad: 0 0 0 0;
    --dm-scm-header-mar: 0 0 20px 0;
    
    --dm-scm-prodbox-pad: 15px 15px 15px 15px;
    --dm-scm-prodbox-mar: 0 0 20px 0;
    --dm-scm-prodbox-rad: 10px 10px 10px 10px;
    --dm-scm-prodimg-rad: 8px 8px 8px 8px;
    
    --dm-scm-addons-pad: 0 0 0 0;
    --dm-scm-addons-mar: 0 0 0 0;
    
    --dm-scm-addonitem-pad: 10px 12px 10px 12px;
    --dm-scm-addonitem-mar: 0 0 0 0;
    --dm-scm-addonitem-rad: 0 0 0 0;
    
    --dm-scm-prog-pad: 0 0 0 0;
    --dm-scm-prog-mar: 15px 0 0 0;
    
    --dm-scm-proglbl-pad: 0 0 0 0;
    --dm-scm-proglbl-mar: 0 0 55px 0;
    
    --dm-scm-footer-pad: 10px 0 0 0;
    --dm-scm-footer-mar: 70px 0 0 0;
    
    --dm-scm-btn-pad: 15px 15px 15px 15px;
    --dm-scm-btn-mar: 0 0 0 0;
    --dm-scm-btn-rad: 10px 10px 10px 10px;

    /* Font Sizes (Dynamic from PHP) */
    --dm-scm-fs-modal-title: 18px;
    --dm-scm-fs-prod-title: 14px;
    --dm-scm-fs-prod-price: 14px;
    --dm-scm-fs-addon-title: 14px;
    --dm-scm-fs-addon-price: 14px;
    --dm-scm-fs-prog-text: 13px;
    --dm-scm-fs-footer-total: 16px;
    --dm-scm-fs-btn: 16px;
    --dm-scm-fs-badge: 10px;
}

/* =========================================
   2. OVERLAY & MODAL CONTAINER
   ========================================= */
.dm-scm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}

.dm-scm-modal {
    background: var(--dm-scm-bg);
    width: 90%;
    max-width: 500px;
    border-radius: var(--dm-scm-modal-rad);
    padding: var(--dm-scm-modal-pad);
    margin: var(--dm-scm-modal-mar);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-family: var(--dm-scm-font);
    direction: rtl;
    text-align: right;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.dm-scm-modal * {
    font-family: var(--dm-scm-font) !important;
    box-sizing: border-box;
}

.dm-scm-close {
    position: absolute;
    top: 15px;
    left: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    z-index: 10;
}

/* =========================================
   3. HEADER & ICONS
   ========================================= */
.dm-scm-header {
    text-align: center;
    padding: var(--dm-scm-header-pad);
    margin: var(--dm-scm-header-mar);
}

.dm-scm-header h3 {
    margin: 0;
    font-size: var(--dm-scm-fs-modal-title);
    color: #333;
}

.dm-scm-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.icon-success {
    width: var(--dm-scm-icon-w);
    height: var(--dm-scm-icon-w);
    background: var(--dm-scm-icon-bg);
    color: var(--dm-scm-icon-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(var(--dm-scm-icon-w) / 2.5);
}

.dm-custom-icon {
    width: var(--dm-scm-icon-w);
    height: var(--dm-scm-icon-w);
    object-fit: contain;
    background: var(--dm-scm-icon-bg);
    border-radius: 50%;
    padding: 8px;
    box-sizing: border-box;
}

/* =========================================
   4. PRODUCT SUMMARY
   ========================================= */
#dm-scm-product-summary {
    background: #f9f9f9;
    padding: var(--dm-scm-prodbox-pad);
    margin: var(--dm-scm-prodbox-mar);
    border-radius: var(--dm-scm-prodbox-rad);
    display: flex;
    align-items: center;
    gap: 15px;
}

.dm-scm-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--dm-scm-prodimg-rad);
}

.dm-scm-details h4 {
    margin: 0 0 5px;
    font-size: var(--dm-scm-fs-prod-title);
    color: #333;
}

.dm-scm-base-price {
    font-weight: bold;
    color: var(--dm-scm-price-reg);
    font-size: var(--dm-scm-fs-prod-price);
}

/* =========================================
   5. ADDONS LIST & UPSELL
   ========================================= */
#dm-scm-addons-list {
    padding: var(--dm-scm-addons-pad);
    margin: var(--dm-scm-addons-mar);
}

.dm-scm-addons-section h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #666;
}

.dm-scm-addon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--dm-scm-addonitem-pad);
    margin: var(--dm-scm-addonitem-mar);
    border-radius: var(--dm-scm-addonitem-rad);
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.dm-scm-addon-row:last-child {
    border-bottom: none;
}

.dm-scm-addon-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.dm-scm-addon-info span {
    font-size: var(--dm-scm-fs-addon-title);
}

.dm-scm-addon-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--dm-scm-primary);
}

/* --- Upsell --- */
.dm-scm-upsell-row {
    background: var(--dm-scm-upsell-bg);
    border: 1px solid var(--dm-scm-upsell-border);
    margin-top: 7px;
}

.dm-scm-upsell-row img {
    border-radius: 8px;
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.dm-upsell-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

/* --- Badges --- */
.dm-scm-badge {
    background: var(--dm-scm-badge-ad-bg);
    color: var(--dm-scm-badge-ad-text);
    font-size: var(--dm-scm-fs-badge) !important;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 5px;
}

.dm-scm-upsell-row .dm-scm-badge {
    background: var(--dm-scm-badge-up-bg) !important;
    color: var(--dm-scm-badge-up-text) !important;
    align-self: flex-start;
    margin: 0;
}

/* --- Select & Price --- */
.dm-scm-select-wrapper {
    margin-right: 10px;
}

.dm-scm-var-select {
    max-width: 140px;
    min-width: 100px;
    padding: 2px 5px;
    font-size: 11px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #444;
    cursor: pointer;
}

.dm-scm-var-select:focus {
    outline: none;
    border-color: var(--dm-scm-primary);
}

.dm-scm-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.dm-scm-price-box del {
    color: #999;
    font-size: calc(var(--dm-scm-fs-addon-price) - 2px);
    text-decoration: line-through;
}

.dm-scm-price-box ins {
    color: var(--dm-scm-price-sale);
    text-decoration: none;
    font-weight: bold;
    font-size: var(--dm-scm-fs-addon-price);
}

.dm-scm-addon-price {
    color: var(--dm-scm-price-reg);
    font-size: var(--dm-scm-fs-addon-price);
}

/* =========================================
   6. PROGRESS BAR & MILESTONES
   ========================================= */
.dm-scm-progress-wrapper {
    padding: var(--dm-scm-prog-pad);
    margin: var(--dm-scm-prog-mar);
    text-align: center;
}

.dm-scm-progress-label {
    font-size: var(--dm-scm-fs-prog-text);
    padding: var(--dm-scm-proglbl-pad);
    margin: var(--dm-scm-proglbl-mar);
    color: var(--dm-scm-prog-text-col);
    min-height: 20px;
    display: block;
}

.dm-scm-progress-bar {
    background: #e0e0e0;
    height: 8px;
    border-radius: 10px;
    position: relative;
    margin: 0 15px;
    direction: ltr;
}

#dm-scm-progress-fill {
    background: linear-gradient(90deg, var(--dm-scm-primary), var(--dm-scm-secondary));
    height: 100%;
    border-radius: 10px;
    position: absolute;
    top: 0;
    right: 0;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* Dots & Labels */
.dm-scm-milestone-dot {
    position: absolute;
    top: 50%;
    transform: translate(50%, -50%);
    width: 14px;
    height: 14px;
    background: #fff;
    border: 3px solid #ccc;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s;
}

.dm-scm-milestone-dot.reached {
    border-color: var(--dm-scm-primary);
    background: var(--dm-scm-primary);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
}

.dm-milestone-label-visible {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dm-scm-tooltip-bg);
    border: 1px solid #eee;
    padding: 2px 5px;
    border-radius: 6px;
    color: var(--dm-scm-tooltip-text);
    font-size: 10px;
    line-height: 1.4;
    text-align: center;
    white-space: normal;
    width: 170px;
    max-height: 60px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.dm-scm-milestone-dot:nth-child(odd) .dm-milestone-label-visible {
    top: 20px;
    bottom: auto;
    border-top: 2px solid var(--dm-scm-badge-up-bg) !important;
}

.dm-scm-milestone-dot:nth-child(even) .dm-milestone-label-visible {
    top: auto;
    bottom: 20px;
    border-bottom: 2px solid var(--dm-scm-primary);
}

.dm-milestone-label-visible::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    pointer-events: none;
}

.dm-scm-milestone-dot:nth-child(odd) .dm-milestone-label-visible::after {
    top: -12px;
    border-color: transparent transparent var(--dm-scm-badge-up-bg) transparent;
}

.dm-scm-milestone-dot:nth-child(even) .dm-milestone-label-visible::after {
    bottom: -12px;
    border-color: var(--dm-scm-primary) transparent transparent transparent;
}

.dm-scm-milestone-dot:last-child .dm-milestone-label-visible {
    left: 70px;
}

.dm-scm-milestone-dot:last-child .dm-milestone-label-visible::after {
    left: 11% !important;
}

/* Tooltips */
.dm-milestone-tooltip {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    visibility: hidden;
    z-index: 20;
}

.dm-scm-milestone-dot:hover .dm-milestone-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 25px;
}

/* =========================================
   7. FOOTER & ACTIONS
   ========================================= */
.dm-scm-footer {
    border-top: 1px solid #eee;
    padding: var(--dm-scm-footer-pad);
    margin: var(--dm-scm-footer-mar);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dm-scm-total {
    display: flex;
    justify-content: space-between;
    font-size: var(--dm-scm-fs-footer-total);
    font-weight: bold;
    color: #333;
}

.dm-scm-btn-wrapper {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.dm-scm-btn-primary,
.dm-scm-btn-continue {
    border: none;
    padding: var(--dm-scm-btn-pad);
    margin: var(--dm-scm-btn-mar);
    border-radius: var(--dm-scm-btn-rad);
    font-size: var(--dm-scm-fs-btn);
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    flex: 1;
    text-align: center;
}

.dm-scm-btn-primary {
    background: var(--dm-scm-primary);
    color: #fff;
}

.dm-scm-btn-continue {
    background: var(--dm-scm-btn-cont-bg);
    color: var(--dm-scm-btn-cont-text);
}

.dm-scm-btn-primary:hover {
    background: var(--dm-scm-btn-hover);
    color: var(--dm-scm-btn-hover-text) !important;
}

.dm-scm-btn-continue:hover {
    opacity: 0.8;
}

.dm-scm-btn-primary.loading,
.dm-scm-btn-continue.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* =========================================
   8. LOADING & QUANTITY UTILITIES
   ========================================= */
body.dm-scm-loading .add_to_cart_button,
body.dm-scm-loading .single_add_to_cart_button {
    pointer-events: none !important;
    opacity: 0.6 !important;
    cursor: wait !important;
}

.dm-scm-qty-control {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fdfdfd;
    padding: 2px;
    border-radius: 6px;
}

/* =========================================
   9. RESPONSIVE
   ========================================= */
@media (max-width: 480px) {
    .dm-scm-modal {
        width: 95%;
        padding-bottom: 40px;
    }
    .dm-milestone-label-visible {
        width: 155px;
        font-size: 9px;
    }
    .dm-scm-milestone-dot:last-child .dm-milestone-label-visible {
        left: 60px;
    }
    .dm-scm-milestone-dot:last-child .dm-milestone-label-visible::after {
        left: 13% !important;
    }
}

/* =========================================
   10. CART PAGE STYLES (Zhaket Style)
   ========================================= */
tr.cart_item.dm-child-item td {
    border-top: none !important;
    background-color: #fafafa;
    padding-top: 5px;
    padding-bottom: 5px;
}

tr.cart_item.dm-child-item td.product-thumbnail {
    position: relative;
}

tr.cart_item.dm-child-item td.product-thumbnail::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    bottom: 50%;
    border-left: 2px dashed #ccc;
    z-index: 1;
}

tr.cart_item.dm-child-item td.product-thumbnail::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    border-top: 2px dashed #ccc;
    z-index: 1;
}

.dm-addon-thumbnail {
    position: relative;
    z-index: 2;
    background: #fff !important;
    border: 1px solid #eee;
}

.dm-addon-title {
    font-size: 0.9em;
    color: #666;
}

/* =========================================
   11. MINI CART DRAWER (LEFT/RIGHT SIDE)
   ========================================= */
.dm-scm-float-bottom-left {
    bottom: 20px;
    left: 20px;
}

.dm-scm-float-bottom-right {
    bottom: 20px;
    right: 20px;
}

.dm-scm-trigger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);*/
    text-decoration: none;
    position: relative;
    transition: transform 0.2s ease;
}

.dm-scm-trigger-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.dm-scm-trigger-btn img {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

.dm-scm-trigger-btn .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dm-scm-count-badge {
    position: absolute;
    top: -11px;
    right: 16px;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EF3E63;
}

.dm-scm-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.dm-scm-drawer.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.dm-scm-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    transition: opacity 0.3s;
}

.dm-scm-drawer-content {
    position: absolute;
    top: 0;
    left: 0 !important;
    right: auto !important;
    width: 350px;
    max-width: 90%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
    direction: rtl;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dm-scm-drawer.open .dm-scm-drawer-content {
    transform: translateX(0);
}

.dm-scm-drawer-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.dm-scm-drawer-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.dm-scm-drawer-close {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.dm-scm-drawer-close:hover {
    color: #ff5b5b;
}

.dm-scm-drawer-progress {
    padding: 15px 20px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.dm-scm-mini-msg {
    margin: 0 0 8px;
    font-size: 13px;
    text-align: center;
    color: #555;
}

.dm-scm-mini-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    direction: ltr;
}

.dm-scm-mini-fill {
    height: 100%;
    background: var(--dm-scm-primary);
    width: 0;
    transition: width 0.5s ease;
}

.dm-scm-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #fff;
}

.dm-scm-cart-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dm-scm-cart-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.dm-scm-cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.dm-scm-cart-item.dm-scm-is-addon {
    padding-right: 30px;
    background: #fdfdfd;
    border-bottom: none;
    margin-bottom: 5px;
    padding-bottom: 5px;
}

.dm-scm-connector {
    position: absolute;
    right: 12px;
    top: -25px;
    bottom: 25px;
    width: 10px;
    border-right: 2px dashed #ccc;
    border-bottom: 2px dashed #ccc;
    border-bottom-right-radius: 8px;
    pointer-events: none;
}

.dm-scm-item-thumb img,
.dm-addon-thumb-icon {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.dm-addon-thumb-icon {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #aaa;
    border: 1px solid #eee;
    line-height: normal;
}

.dm-scm-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.dm-scm-item-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dm-scm-item-price {
    font-size: 13px;
    color: #777;
}

.dm-scm-remove-item {
    position: absolute;
    top: -5px;
    left: -10px;
    color: #FFF;
    background: #ff5b5b;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    padding: 0px 5px;
    transition: color 0.2s;
    border-radius:50px;
}

.dm-scm-remove-item:hover {
    color: #d63638;
}

.dm-scm-drawer-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fff;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.02);
}

.dm-scm-subtotal {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.dm-scm-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dm-scm-btn-secondary {
    background: #f0f0f0;
    color: #333;
    border: none;
    padding: 12px;
    border-radius: 8px;
    text-align: center !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    display: block;
}

.dm-scm-btn-secondary:hover {
    background: #e0e0e0;
    color: #000;
}

.dm-scm-empty-cart {
    text-align: center;
    color: #777;
    margin-top: 50px;
    font-size: 14px;
}

/* =========================================
   12. CONFIRM DELETE MODAL
   ========================================= */
.dm-scm-confirm-popup {
    background: #fff;
    width: 90%;
    max-width: 400px;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: fadeInScale 0.3s ease;
}

.dm-scm-confirm-popup h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.dm-scm-confirm-popup p {
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
}

.dm-scm-confirm-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dm-scm-confirm-actions .button {
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    border: none;
}

#dm-scm-confirm-no {
    background: #f0f0f0;
    color: #333;
}

#dm-scm-confirm-yes {
    background: #d32f2f;
    color: #fff;
}

#dm-scm-confirm-yes:hover {
    background: #b71c1c;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}