/* Custom styles cho PlayMood - Midnight Blue Theme Mockup */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg-app: #121929;
    /* Màu xanh đậm (từ ảnh bạn gửi) cho sidebar & nền */
    --bg-main: #182035;
    /* Màu xanh sáng hơn một chút cho khu vực chính */
    --bg-card: #202A45;
    /* Nền cho các card */
    --bg-player: #0E131F;
    /* Nền player tối hơn để nổi bật */
    --bg-search: #202A45;
    /* Nền thanh tìm kiếm */

    --text-primary: #FFFFFF;
    /* Chữ trắng */
    --text-secondary: #8B9BB4;
    /* Chữ phụ màu xám xanh */

    --accent-color: #8CE1B2;
    /* Màu xanh lá cho nút Play, Follow (giữ nguyên độ tương phản tốt) */
    --accent-hover: #75c99c;

    --sidebar-width: 260px;
    --right-sidebar-width: 280px;
    --player-height: 90px;
}

body {
    background-color: var(--bg-app);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
    /* Prevent body scroll, handle scroll in inner containers */
}

/* Typography Utilities */
.text-muted-custom {
    color: var(--text-secondary) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

/* Layout Container */
.app-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-wrapper {
    display: flex;
    flex: 1;
    overflow: hidden;
    height: calc(100vh - var(--player-height));
}

/* Left Sidebar */
.sidebar-left {
    width: var(--sidebar-width);
    background-color: var(--bg-app);
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    background: linear-gradient(135deg, #CFE8D7 0%, #DFD2E2 100%);
    color: #121929;
    border-radius: 10px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.nav-section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin: 20px 0 10px 15px;
    font-weight: 600;
}

.nav-link-custom {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    transition: all 0.2s;
    margin-bottom: 2px;
}

.nav-link-custom:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.03);
}

.nav-link-custom.active {
    background-color: rgba(140, 225, 178, 0.1);
    color: var(--accent-color);
    border-left: 3px solid var(--accent-color);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
}

.playlist-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.playlist-img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

/* Main Content */
.main-content {
    flex: 1;
    background-color: var(--bg-main);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.top-header {
    padding: 20px 30px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 100;
}

.search-bar {
    background-color: var(--bg-search);
    border-radius: 20px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    width: 400px;
    gap: 10px;
}

.search-bar input {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    outline: none;
}

.search-bar input::placeholder {
    color: var(--text-secondary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-icon {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-icon:hover {
    color: white;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.content-scroll {
    padding: 30px 15px;
    overflow-y: auto;
    flex: 1;
}



/* Right Sidebar */
.sidebar-right {
    width: var(--right-sidebar-width);
    background-color: var(--bg-app);
    padding: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    overflow-y: auto;
}

.friend-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.friend-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
}

.online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    border: 2px solid var(--bg-app);
}

.friend-info {
    flex: 1;
    min-width: 0;
}

.friend-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.friend-song {
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.friend-time {
    font-size: 0.7rem;
    color: #666;
    margin-top: 2px;
}

.btn-follow {
    border: 1px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 500;
}

.btn-follow.following {
    background: var(--accent-color);
    color: var(--bg-app);
}

.btn-requested {
    background-color: var(--accent-color) !important;
    color: var(--bg-app) !important;
    border: none !important;
}

.btn-requested:hover {
    background-color: var(--accent-hover) !important;
    color: var(--bg-app) !important;
}

/* Player Bar */
.player-bar {
    height: var(--player-height);
    background-color: var(--bg-player);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 30%;
    min-width: 0;
}

.player-text {
    min-width: 0;
    flex: 1;
}

.player-title,
.player-artist {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.player-artist {
    font-size: 0.8rem;
}

.player-cover {
    width: 56px;
    height: 56px;
    border-radius: 6px;
}

.player-controls-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 5px;
}

.btn-play {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--bg-app);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.1s;
}

.btn-play:active {
    transform: scale(0.95);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 500px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.progress-bar-bg {
    flex: 1;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--text-primary);
    border-radius: 2px;
    width: 30%;
    position: relative;
    /* Demo */
}

.player-actions {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.volume-bar {
    width: 80px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    display: flex;
    align-items: center;
}

.volume-fill {
    height: 100%;
    background-color: var(--accent-color);
    width: 60%;
    border-radius: 2px;
    position: relative;
}

/* --- Thêm nút tròn (knob) cho thanh kéo (volume & progress) --- */
.progress-bar-bg, .volume-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.progress-bar-fill::after, .volume-fill::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.4);
    transition: opacity 0.1s;
    pointer-events: none;
}

/* Hiện nút tròn khi hover vào nguyên thanh */
.progress-bar-bg:hover .progress-bar-fill::after,
.volume-bar:hover .volume-fill::after {
    opacity: 1;
}

/* Đổi màu progress khi hover */
.progress-bar-bg:hover .progress-bar-fill {
    background-color: var(--accent-color);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* =========================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
========================================= */
@media (max-width: 1200px) {

    /* Màn hình nhỏ hơn ẩn bớt search bar */
    .search-bar {
        width: 250px;
    }
}

@media (max-width: 992px) {

    /* Tablet & Mobile (Sidebar bị ẩn) */
    .search-bar {
        width: auto;
        flex: 1;
        margin-right: 15px;
    }

    .player-actions {
        display: none;
    }

    .player-info {
        width: auto;
        flex: 1;
        margin-right: 15px;
    }

    .player-controls-container {
        width: auto;
        flex: none;
    }

    .progress-container {
        display: none;
    }
}

@media (max-width: 768px) {

    /* Mobile */
    .top-header {
        padding: 15px 10px;
    }

    .content-scroll {
        padding: 10px;
    }

    .mood-hero-container {
        padding: 30px 20px;
    }

    .mood-title {
        font-size: 1.8rem;
    }

    .mood-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mood-card {
        width: 100%;
        min-width: 0;
        height: 100px;
    }

    .mood-card i {
        font-size: 1.2rem;
    }

    .mood-card span {
        font-size: 0.8rem;
    }

    .player-bar {
        padding: 0 12px;
        margin: 10px 10px 15px 10px;
        border-radius: 12px;
        height: 60px;
        background-color: #202A45;
        border-top: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    /* Thanh mini progress cho mobile */
    .player-bar::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 15px;
        right: 15px;
        height: 2px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }

    .player-bar::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 15px;
        width: 40%;
        height: 2px;
        background: var(--accent-color);
        border-radius: 2px;
        z-index: 1;
    }

    .player-cover {
        width: 40px;
        height: 40px;
        border-radius: 6px;
    }

    .btn-play {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        box-shadow: 0 2px 8px rgba(140, 225, 178, 0.2);
    }

    .player-controls {
        gap: 12px;
    }
}

@media (max-width: 576px) {

    /* Màn hình điện thoại nhỏ (iPhone SE) - Hiển thị full Player */
    .player-bar {
        height: auto;
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .player-bar::before,
    .player-bar::after {
        display: none;
        /* Bỏ thanh mini progress */
    }

    .player-info {
        width: 100%;
        margin-right: 0;
        gap: 12px;
    }

    .player-title {
        font-size: 0.95rem;
    }

    .player-artist {
        font-size: 0.8rem;
    }

    .heart-btn {
        display: block;
        padding: 0;
        font-size: 1.2rem;
    }

    .player-controls-container {
        width: 100%;
        order: 2;
    }

    .player-controls {
        width: 100%;
        justify-content: space-between;
        /* Rải đều 5 nút bấm */
        margin-bottom: 15px;
    }

    .progress-container {
        display: flex !important;
        /* Hiện lại thanh progress đầy đủ */
        width: 100%;
        max-width: 100%;
    }
}

/* Custom Dropdown Item Hover/Active state */
.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus,
.dropdown-menu-dark .dropdown-item:active,
.dropdown-menu-dark .dropdown-item.active {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}


/* Keep logout text red on hover */
.dropdown-menu-dark .dropdown-item.text-danger:hover,
.dropdown-menu-dark .dropdown-item.text-danger:focus {
    color: var(--bs-danger) !important;
}
/* ==========================================================================
   CUSTOM SWITCH (GLOBAL)
   ========================================================================== */
.custom-switch .form-check-input {
    width: 3rem;
    height: 1.6rem;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    border-radius: 2rem;
    position: relative;
    transition: background-color 0.3s ease;
    /* Make the circle white in unchecked state */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-switch .form-check-input:focus {
    box-shadow: none;
    border-color: transparent;
    outline: none;
}

.custom-switch .form-check-input:checked {
    background-color: #8CE1B2; 
    border-color: #8CE1B2;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23121929'/%3e%3c/svg%3e");
}

/* Custom marquee starting from left (seamless loop) */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    display: inline-flex;
    vertical-align: middle;
}
.marquee-left {
    display: flex;
    animation: marquee-left-anim 12s linear infinite;
}
@keyframes marquee-left-anim {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* Custom Playlist Grid */
.playlist-grid {
    display: grid;
    grid-template-columns: 30px minmax(200px, 4fr) minmax(100px, 1.5fr) minmax(120px, 1.5fr) 50px 30px 30px;
    align-items: center;
    gap: 16px;
    width: 100%;
}

@media (max-width: 991px) {
    .playlist-grid {
        grid-template-columns: 30px minmax(200px, 4fr) minmax(100px, 1.5fr) 50px 30px 30px;
    }

    .playlist-grid .hide-lg {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .playlist-grid {
        grid-template-columns: 30px minmax(150px, 1fr) 50px 30px 30px;
    }

    .playlist-grid .hide-md {
        display: none !important;
    }
}

.playlist-grid-row {
    transition: background-color 0.2s;
}

.playlist-grid-row:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Global Play Button Large */
.btn-play-large {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-play-large:hover {
    transform: scale(1.05);
    background-color: #1ed760;
}

/* --- Modal Song List Common Styles (Playlists, Albums, etc.) --- */
.song-row {
    display: flex; align-items: center; gap: .75rem;
    padding: .5rem .6rem; border-radius: 10px;
    transition: background 0.2s ease;
}
.song-row:hover { background: rgba(255,255,255,.05); }
.song-num {
    width: 20px; text-align: center;
    font-size: .75rem; color: var(--text-secondary); flex-shrink: 0;
}
.song-thumb {
    width: 38px; height: 38px; flex-shrink: 0;
    border-radius: 7px; object-fit: cover; background: #1a0a3a;
}
.song-thumb-ph {
    width: 38px; height: 38px; flex-shrink: 0;
    border-radius: 7px; background: #1a0a3a;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; color: rgba(255,255,255,.2);
}
.song-info { flex: 1; min-width: 0; }
.song-title-sm {
    font-size: .875rem; font-weight: 600; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.song-dur { font-size: .72rem; color: var(--text-secondary); }
.btn-rm-song {
    background: none; border: none;
    color: rgba(255,255,255,.6);
    padding: 4px 7px; border-radius: 6px;
    cursor: pointer; transition: 0.2s ease;
}
.btn-rm-song:hover { color: #fff; background: rgba(255,255,255,.1); }

/* Common Search Results in Modals */
#songSearchResults, #songSearchResultsPlaylist { max-height: 180px; overflow-y: auto; }
#songSearchResults::-webkit-scrollbar, #songSearchResultsPlaylist::-webkit-scrollbar { width: 4px; }
#songSearchResults::-webkit-scrollbar-thumb, #songSearchResultsPlaylist::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.2); border-radius: 4px;
}
#songSearchResults .song-row, #songSearchResultsPlaylist .song-row { cursor: pointer; }
#songSearchResults .song-row:hover, #songSearchResultsPlaylist .song-row:hover { background: rgba(255,255,255,.1); }
        /* ══════════════════════════════════════
           MODALS – shared
        ══════════════════════════════════════ */
        .pm-modal .modal-content {
            background: var(--bg-card);
            border: 1px solid var(--pm-border);
            border-radius: var(--pm-radius); overflow: hidden;
        }
        .pm-modal .modal-header {
            border-bottom: 1px solid var(--pm-border);
            padding: 1.25rem 1.5rem 1rem;
        }
        .pm-modal .modal-title {
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem; font-weight: 700;
        }
        .pm-modal .modal-body  { padding: 1.25rem 1.5rem; }
        .pm-modal .modal-footer {
            border-top: 1px solid var(--pm-border);
            padding: 1rem 1.5rem;
        }

        /* Form */
        .pm-label {
            font-size: .78rem; font-weight: 600;
            color: var(--pm-muted);
            text-transform: uppercase; letter-spacing: .8px;
            margin-bottom: .45rem; display: block;
        }
        .pm-input {
            width: 100%;
            background-color: rgba(255,255,255,.05) !important;
            border: 1px solid rgba(255,255,255,.1) !important;
            border-radius: 10px;
            color: #fff !important; font-size: .9rem;
            padding: .6rem .9rem;
            transition: border-color var(--transition);
            outline: none;
        }
        .pm-input:focus {
            border-color: var(--pm-theme);
            box-shadow: 0 0 0 3px rgba(140,225,178,.15);
        }
        .pm-input::placeholder { color: rgba(255,255,255,.25); }
        textarea.pm-input { resize: none; }
        
        select.pm-input option {
            background-color: #1c2331 !important; /* Force dark background */
            color: #fff !important;
        }


        .cover-preview-box {
            width: 84px; height: 84px; flex-shrink: 0;
            border-radius: 10px;
            background: var(--bg-app);
            overflow: hidden;
            display: flex; align-items: center; justify-content: center;
            border: 1px solid var(--pm-border);
        }
        .cover-preview-box img { width: 100%; height: 100%; object-fit: cover; }
        .cover-preview-box i  { font-size: 1.6rem; color: rgba(255,255,255,.2); }

        /* Buttons */
        .btn-pm-primary {
            background: linear-gradient(135deg, var(--pm-theme), var(--pm-theme-dk));
            color: #fff; border: none; border-radius: 30px;
            padding: .5rem 1.5rem; font-size: .88rem; font-weight: 700;
            cursor: pointer; transition: var(--transition);
        }
        .btn-pm-primary:disabled { opacity: .6; cursor: not-allowed; }
        .btn-pm-primary:not(:disabled):hover {
            box-shadow: 0 6px 18px rgba(124,58,237,.45); transform: translateY(-1px);
        }
        
        .btn-save-album {
            background-color: var(--accent-color);
            color: var(--bg-app); border: none; border-radius: 30px;
            padding: .5rem 1.5rem; font-size: .88rem; font-weight: 700;
            cursor: pointer; transition: var(--transition);
        }
        .btn-save-album:not(:disabled):hover {
            box-shadow: 0 6px 18px rgba(30,215,96,.35); transform: translateY(-1px);
        }
        .btn-pm-outline {
            background: transparent;
            color: rgba(255,255,255,.7);
            border: 1px solid rgba(255,255,255,.15);
            border-radius: 30px; padding: .5rem 1.25rem;
            font-size: .88rem; font-weight: 500; cursor: pointer;
            transition: var(--transition);
        }
        .btn-pm-outline:hover { background: rgba(255,255,255,.06); color: #fff; }
        .btn-pm-success {
            background: linear-gradient(135deg, #22c55e, #15803d);
            color: #fff; border: none; border-radius: 30px;
            padding: .45rem 1.25rem; font-size: .82rem; font-weight: 700;
            cursor: pointer; transition: var(--transition);
        }
        .btn-pm-success:hover {
            box-shadow: 0 4px 14px rgba(34,197,94,.35); transform: translateY(-1px);
        }
        .btn-pm-amber {
            background: rgba(245,158,11,.12); color: var(--pm-amber);
            border: 1px solid rgba(245,158,11,.28);
            border-radius: 30px; padding: .45rem 1.1rem; font-size: .82rem; font-weight: 600;
            cursor: pointer; transition: var(--transition);
        }
        .btn-pm-amber:hover { background: rgba(245,158,11,.22); }
        .btn-pm-edit {
            background: var(--pm-theme-bg); color: var(--pm-theme);
            border: 1px solid var(--pm-theme-border);
            border-radius: 30px; padding: .45rem 1.1rem; font-size: .82rem; font-weight: 600;
            cursor: pointer; transition: var(--transition);
        }
        .btn-pm-edit:hover { background: rgba(168,85,247,.22); }


        /* ══════════════════════════════════════
           DESIGN TOKENS
        ══════════════════════════════════════ */
        :root {
            --pm-theme:         var(--accent-color);
            --pm-theme-dk:      #1ed760;
            --pm-theme-bg:      rgba(140,225,178,0.15);
            --pm-theme-border:  rgba(140,225,178,0.3);
            --pm-amber:         #f59e0b;
            --pm-red:           #ef4444;
            --pm-card:          rgba(255,255,255,0.02);
            --pm-card-hover:    rgba(255,255,255,0.06);
            --pm-border:        rgba(255,255,255,0.05);
            --pm-muted:         rgba(255,255,255,0.5);
            --pm-radius:        12px;
            --pm-radius-sm:     8px;
            --transition:       0.25s ease;
        }

/* Custom styles for Mood Search Modal */
#musicSearchInput::placeholder { color: rgba(255, 255, 255, 0.6) !important; }
#musicSearchInput:focus { border-color: rgba(255, 255, 255, 0.5) !important; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) !important; background: rgba(0, 0, 0, 0.4) !important; }
