/* ============================================================================
   ENHANCED WELCOME SECTION - MedPrepOnline
   Modern, gradient-based design with improved stats and profile display
   ============================================================================ */

:root {
    --welcome-gradient-start: #4fb3d9;
    --welcome-gradient-end: #5dbea3;
    --welcome-accent: #20c997;
    --welcome-shadow: rgba(79, 179, 217, 0.3);
    --welcome-glass: rgba(255, 255, 255, 0.15);
    --welcome-text-shadow: rgba(0, 0, 0, 0.1);
}

/* ===== MAIN WELCOME SECTION ===== */
.welcome-section {
    background: linear-gradient(135deg, var(--welcome-gradient-start) 0%, var(--welcome-gradient-end) 100%);
    color: white;
    padding: 4rem 0;
    margin: -2rem -15px 2rem -15px;
    border-radius: 0 0 2rem 2rem;
    box-shadow: 0 10px 40px var(--welcome-shadow);
    position: relative;
    overflow: hidden;
}

/* Animated background pattern */
.welcome-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.welcome-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.welcome-section .container {
    position: relative;
    z-index: 1;
}

/* ===== WELCOME CONTENT ===== */
.welcome-content {
    padding: 1rem 0;
}

.welcome-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px var(--welcome-text-shadow);
    animation: slideInLeft 0.8s ease-out;
}

.greeting-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.user-name {
    display: inline-block;
    background: var(--welcome-glass);
    padding: 0.3rem 1rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.welcome-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
    animation: fadeIn 1s ease-out 0.3s both;
}

/* ===== WELCOME STATS ===== */
.welcome-stat {
    background: var(--welcome-glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
}

.welcome-stat:nth-child(2) {
    animation-delay: 0.2s;
}

.welcome-stat:nth-child(3) {
    animation-delay: 0.4s;
}

.welcome-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, white, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.welcome-stat:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.25);
}

.welcome-stat:hover::before {
    opacity: 0.6;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    opacity: 0.9;
}

/* ===== PROFILE AVATAR SECTION ===== */
.profile-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInRight 0.8s ease-out;
}

.dashboard-profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--welcome-glass);
    backdrop-filter: blur(15px);
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-profile-photo::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-profile-photo:hover {
    transform: scale(1.08) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.dashboard-profile-photo:hover::before {
    opacity: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    position: relative;
    z-index: 1;
}

.avatar-placeholder i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== STREAK INDICATOR ===== */
.streak-indicator {
    background: rgba(255, 107, 107, 0.95);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.streak-indicator:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.6);
}

.streak-indicator i {
    font-size: 1.25rem;
    animation: flicker 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
    }

    50% {
        box-shadow: 0 6px 30px rgba(255, 107, 107, 0.6);
    }
}

@keyframes flicker {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* ===== ACHIEVEMENT BADGE ===== */
.achievement-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 0.6rem 1.25rem;
    border-radius: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    animation: shimmer 2s ease-in-out infinite;
}

.achievement-badge:hover {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.achievement-badge i {
    font-size: 1.1rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }
}

@keyframes sparkle {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(-15deg) scale(1.1);
    }

    75% {
        transform: rotate(15deg) scale(1.1);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .welcome-title {
        font-size: 2.25rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .dashboard-profile-photo {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 992px) {
    .welcome-section {
        padding: 3rem 0;
        margin: -1.5rem -15px 1.5rem -15px;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .greeting-text {
        font-size: 1.25rem;
    }

    .welcome-subtitle {
        font-size: 1.1rem;
    }

    .dashboard-profile-photo {
        width: 140px;
        height: 140px;
    }

    .profile-avatar-section {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 2.5rem 0;
        border-radius: 0 0 1.5rem 1.5rem;
    }

    .welcome-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .greeting-text {
        font-size: 1.1rem;
    }

    .welcome-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .welcome-stat {
        padding: 1.25rem 1rem;
        margin-bottom: 0.75rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .dashboard-profile-photo {
        width: 120px;
        height: 120px;
    }

    .streak-indicator {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }

    .achievement-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .welcome-section {
        padding: 2rem 0;
        margin: -1rem -15px 1rem -15px;
    }

    .welcome-title {
        font-size: 1.5rem;
    }

    .greeting-text {
        font-size: 1rem;
    }

    .user-name {
        display: block;
        margin-top: 0.5rem;
    }

    .welcome-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .welcome-stat {
        padding: 1rem 0.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .dashboard-profile-photo {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }

    .avatar-placeholder i {
        font-size: 3.5rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.welcome-stat:focus-within {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
}

.dashboard-profile-photo:focus-within {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 6px;
}

/* ===== DEBUG MODE (Remove in production) ===== */
.debug-info {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
}

.debug-info strong {
    color: #ffd700;
}

/* ========================================
   ENHANCED PROGRESS OVERVIEW SECTION
   Uses variables from variables.css
   ======================================== */

/* Section Container */
.progress-overview-section {
    padding: 60px 0;
    background: linear-gradient(135deg,
            rgba(79, 179, 217, 0.03) 0%,
            rgba(93, 190, 163, 0.03) 100%);
    position: relative;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-title i {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0;
}

*========================================SIMPLIFIED PROGRESS OVERVIEW Clean,
minimal design using variables.css========================================*/

/* Section Container */
.progress-overview-simple {
    padding: 40px 0;
    background: var(--bg-light);
}

/* Section Title */
.section-title-simple {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* ========================================
   BALANCED PROGRESS OVERVIEW
   Clean design with nice polish and subtle effects
   Uses variables from variables.css
   ======================================== */

/* Section Container */
.progress-overview-balanced {
    padding: 50px 0;
    background: linear-gradient(135deg,
            rgba(79, 179, 217, 0.02) 0%,
            rgba(93, 190, 163, 0.02) 100%);
}

/* Section Header */
.section-header-balanced {
    text-align: center;
    margin-bottom: 10px;
}

.section-title-balanced {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-title-balanced i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.section-subtitle-balanced {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

/* Progress Cards */
.progress-card-balanced {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient accent on top */
.progress-card-balanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.progress-card-balanced:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(79, 179, 217, 0.3);
}

.progress-card-balanced:hover::before {
    opacity: 1;
}

/* Card-specific colors */
.courses-card:hover {
    border-color: rgba(79, 179, 217, 0.4);
}

.completed-card:hover {
    border-color: rgba(40, 167, 69, 0.4);
}

.certificate-card:hover {
    border-color: rgba(255, 193, 7, 0.4);
}

.goal-card:hover {
    border-color: rgba(23, 162, 184, 0.4);
}

/* Card Header */
.card-header-balanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

/* Card Icon */
.card-icon-balanced {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(79, 179, 217, 0.2);
    transition: var(--transition-smooth);
}

.completed-card .card-icon-balanced {
    background: linear-gradient(135deg, var(--success-green) 0%, var(--success-light) 100%);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.certificate-card .card-icon-balanced {
    background: linear-gradient(135deg, var(--warning-yellow) 0%, #ff9800 100%);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.goal-card .card-icon-balanced {
    background: linear-gradient(135deg, var(--info-blue) 0%, var(--primary-color) 100%);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.2);
}

.progress-card-balanced:hover .card-icon-balanced {
    transform: scale(1.05);
}

/* Card Badge */
.card-badge-balanced {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-up,
.badge-achievement {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    animation: badgePop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.badge-up {
    background: linear-gradient(135deg, var(--success-green) 0%, var(--success-light) 100%);
    color: white;
}

.badge-achievement {
    background: linear-gradient(135deg, var(--warning-yellow) 0%, #ff9800 100%);
    color: white;
}

@keyframes badgePop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Card Body */
.card-body-balanced {
    flex: 1;
}

.card-number-balanced {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    line-height: 1;
}

.percent-sign {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-left: 4px;
}

.card-label-balanced {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Progress Bar in Card */
.card-progress-bar {
    width: 100%;
    height: 6px;
    background: var(--bg-gray);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 8px;
}

.card-progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    transition: width 0.8s ease;
}

.completed-card .card-progress-fill {
    background: linear-gradient(135deg, var(--success-green) 0%, var(--success-light) 100%);
}

.certificate-card .card-progress-fill {
    background: linear-gradient(135deg, var(--warning-yellow) 0%, #ff9800 100%);
}

.goal-card .card-progress-fill {
    background: linear-gradient(135deg, var(--info-blue) 0%, var(--primary-color) 100%);
}

.card-meta-balanced {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: block;
}

/* Latest Certificate Badge */
.latest-certificate-badge,
.certificate-placeholder {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    margin-top: 8px;
}

.latest-certificate-badge {
    color: var(--text-dark);
}

.latest-certificate-badge i {
    color: var(--warning-yellow);
}

.certificate-placeholder {
    color: var(--text-muted);
    font-style: italic;
}

.certificate-placeholder i {
    color: var(--text-lighter);
}

/* Card Footer */
.card-footer-balanced {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.trend-positive,
.trend-neutral {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}

.trend-positive {
    color: var(--success-green);
}

.trend-positive i {
    font-size: 0.9rem;
}

.trend-neutral {
    color: var(--text-secondary);
}

.trend-neutral i {
    font-size: 0.9rem;
}

/* Quick Actions Bar */
.quick-actions-balanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.action-button-balanced {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.action-button-balanced:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.action-button-balanced .action-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.action-button-balanced:hover .action-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Responsive Design */
@media (max-width: 991px) {
    .section-title-balanced {
        font-size: 1.625rem;
    }

    .card-number-balanced {
        font-size: 2.25rem;
    }

    .card-icon-balanced {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .progress-overview-balanced {
        padding: 40px 0;
    }

    .section-title-balanced {
        font-size: 1.5rem;
    }

    .progress-card-balanced {
        padding: 20px;
    }

    .card-number-balanced {
        font-size: 2rem;
    }

    .quick-actions-balanced {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .card-icon-balanced {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .card-badge-balanced {
        width: 28px;
        height: 28px;
    }

    .badge-up,
    .badge-achievement {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
}

/* Accessibility */
.progress-card-balanced:focus-within,
.action-button-balanced:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .progress-card-balanced,
    .card-icon-balanced,
    .action-button-balanced,
    .card-progress-fill {
        transition: none;
        animation: none;
    }

    .badge-up,
    .badge-achievement {
        animation: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .progress-overview-balanced {
        background: linear-gradient(135deg,
                rgba(79, 179, 217, 0.05) 0%,
                rgba(93, 190, 163, 0.05) 100%);
    }

    .progress-card-balanced,
    .quick-actions-balanced {
        background: #1a1a1a;
        border-color: rgba(255, 255, 255, 0.1);
    }

    .action-button-balanced {
        background: #2a2a2a;
        border-color: rgba(255, 255, 255, 0.1);
    }
}

/* Print Styles */
@media print {
    .progress-overview-balanced {
        background: white;
    }

    .progress-card-balanced {
        break-inside: avoid;
        box-shadow: none;
    }

    .quick-actions-balanced {
        display: none;
    }
}