/* Home Quick Actions Horizontal Bar Styling (Minimal Clean UI Card) */
.tb-quick-actions-section {
    margin: 1rem 0 1.35rem 0;
    width: 100%;
}

.tb-quick-actions-card {
    background: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    transition: all 0.25s ease;
}

.tb-quick-actions-card:hover {
    box-shadow: 0 8px 25px rgba(5, 62, 153, 0.08);
}

/* Left Minimalist Offer Banner UI Card */
.tb-qa-promo-side {
    flex: 0 0 38%;
    max-width: 40%;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    height: 85px;
    box-sizing: border-box;
}

.tb-qa-promo-card-ui {
    display: flex;
    align-items: center;
    background: #FFF0F3;
    border: 1px solid #fecdd3;
    border-radius: 1rem;
    padding: 0.85rem 1.15rem;
    color: #0f172a;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tb-qa-promo-card-ui:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 27, 36, 0.12);
}

.tb-qa-promo-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.tb-qa-promo-content h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.15rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.15;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
}

.tb-qa-promo-content p {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.3;
    color: #475569;
    font-weight: 500;
    display: block;
    white-space: normal;
    word-wrap: break-word;
}

.tb-qa-promo-bg-icon {
    font-size: 3.5rem;
    color: rgba(217, 27, 36, 0.08);
    transform: rotate(-10deg);
    position: absolute;
    right: 0.75rem;
    bottom: -0.35rem;
    pointer-events: none;
}

/* Vertical Divider Line */
.tb-qa-divider {
    width: 1px;
    height: 60px;
    background: #e2e8f0;
    flex-shrink: 0;
    margin: 0 0.25rem;
    border-radius: 999px;
}

/* Right Side: 3 Action Buttons */
.tb-qa-buttons-side {
    flex: 1 1 58%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0.25rem;
}

.tb-qa-btn-reset {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}

.tb-qa-action-item {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.tb-qa-action-item:hover {
    transform: translateY(-3px);
}

.tb-qa-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.icon-blue {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #dbeafe;
}

.icon-pink {
    background: #fff1f2;
    color: #e11d48;
    border: 1px solid #ffe4e6;
}

.icon-amber {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fef3c7;
}

.tb-qa-action-item:hover .icon-blue {
    background: #2563eb;
    color: #ffffff;
}

.tb-qa-action-item:hover .icon-pink {
    background: #e11d48;
    color: #ffffff;
}

.tb-qa-action-item:hover .icon-amber {
    background: #d97706;
    color: #ffffff;
}

.tb-qa-action-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: #1e293b;
    font-family: 'Plus Jakarta Sans', sans-serif;
    white-space: nowrap;
    text-align: center;
    overflow: visible;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .tb-quick-actions-card {
        padding: 0.6rem 0.65rem;
        gap: 0.35rem;
        border-radius: 1rem;
    }
    .tb-qa-promo-side {
        flex: 0 0 38%;
        max-width: 40%;
        height: 75px;
        border-radius: 0.85rem;
    }
    .tb-qa-promo-card-ui {
        padding: 0.6rem 0.75rem;
        border-radius: 0.85rem;
    }
    .tb-qa-promo-content h3 {
        font-size: 0.95rem;
        margin-bottom: 0.15rem;
    }
    .tb-qa-promo-content p {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    .tb-qa-promo-bg-icon {
        font-size: 2.4rem;
    }
    .tb-qa-divider {
        height: 50px;
        margin: 0 0.15rem;
    }
    .tb-qa-icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .tb-qa-action-label {
        font-size: 0.68rem;
    }
}
