/* styles.css */

/* --- Variables and Base Styles --- */
:root {
    --background-color: #FFFFFF;
    --text-color: #212121; /* Dark Grey */
    --accent-color: #008080; /* Teal Blue */
    --accent-hover-color: #006666;
    --border-color: #E0E0E0;
    --card-background: #FFFFFF;
    --font-family: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding-top: 72px; /* Space for fixed header */
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Header --- */
.header {
    background-color: var(--background-color);
    border-bottom: 1px solid rgba(204, 204, 204, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: 1000;
}

.header-container {
    width: 88%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 28px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
    flex-shrink: 0;
    letter-spacing: -0.06em;
    background: linear-gradient(135deg, var(--accent-color), #00b3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Header Inner (auth state containers) --- */
.header-inner {
    display: contents;
}

.header-inner.hidden {
    display: none;
}

.btn-auth {
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--font-family);
    padding: 7px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: none;
    color: var(--text-color);
    cursor: pointer;
    transition: background-color 0.15s;
}

.btn-auth:hover {
    background-color: #f5f5f5;
}

.btn-auth-primary {
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--font-family);
    padding: 7px 16px;
    border-radius: 8px;
    border: none;
    background-color: var(--accent-color);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.15s;
}

.btn-auth-primary:hover {
    background-color: var(--accent-hover-color);
}

/* --- Auth Modal --- */
.auth-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.auth-modal-overlay.active {
    display: flex;
}

.auth-modal {
    background: #fff;
    border-radius: 12px;
    padding: 36px 32px 28px;
    width: 100%;
    max-width: 380px;
    position: relative;
}

.auth-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #bbb;
    display: flex;
}

.auth-modal-close:hover {
    color: #666;
}

.auth-modal h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 20px;
}

.auth-modal form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-modal input,
.auth-modal textarea {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.15s;
}

.auth-modal input:focus,
.auth-modal textarea:focus {
    border-color: var(--accent-color);
}

.username-field {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.15s;
}

.username-field:focus-within {
    border-color: var(--accent-color);
}

.username-prefix {
    font-size: 0.8rem;
    color: #999;
    padding: 10px 2px 10px 12px;
    background: #f9f9f9;
    white-space: nowrap;
    user-select: none;
}

.username-field input {
    border: none !important;
    border-radius: 0 !important;
    padding-left: 2px !important;
}

.auth-modal button[type="submit"] {
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: var(--accent-color);
    color: #fff;
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s;
    margin-top: 4px;
}

.auth-modal button[type="submit"]:hover {
    background-color: var(--accent-hover-color);
}

.auth-error {
    font-size: 0.78rem;
    color: #e53935;
    margin: 8px 0 0;
    min-height: 1em;
}

.auth-toggle {
    font-size: 0.78rem;
    color: #999;
    margin: 12px 0 0;
}

.auth-toggle a {
    color: var(--accent-color);
    font-weight: 500;
}

/* --- Header Profile --- */
.header-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-profile-pic {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.header-profile-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header-profile-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
}

.header-profile-role {
    font-size: 0.72rem;
    color: #999;
}

/* --- Search Bar --- */
.header-search {
    flex: 1;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    font-size: 20px;
    color: #999;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--font-family);
    background-color: #f5f5f5;
    transition: border-color 0.2s, background-color 0.2s;
    outline: none;
}

.search-input:focus {
    border-color: var(--accent-color);
    background-color: #fff;
}

/* --- Header Nav --- */
.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.header-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    color: #888;
    transition: background-color 0.15s, color 0.15s;
}

.header-nav-link:hover {
    background-color: #f0f0f0;
    color: var(--text-color);
}

.header-nav-link.active {
    color: var(--accent-color);
}

.header-nav-link .material-icons-outlined {
    font-size: 22px;
}

/* --- Header Actions --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.btn-create {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-right: 8px;
}

.btn-create:hover {
    background-color: var(--accent-hover-color);
}

.btn-create .material-icons-outlined {
    font-size: 18px;
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: none;
    cursor: pointer;
    color: #666;
    transition: background-color 0.2s, color 0.2s;
}

.header-icon:hover {
    background-color: #f0f0f0;
    color: var(--text-color);
}

.header-icon .material-icons-outlined {
    font-size: 22px;
}

/* --- Buttons --- */
.btn-primary {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: var(--accent-hover-color);
}

.btn-secondary {
    background-color: #f0f0f0;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}


/* --- Main Layout with Sidebar --- */
.main-layout {
    width: 88%;
    max-width: 1600px;
    margin: 2rem auto;
    display: flex;
    gap: 0;
}

.main-layout.feed-single {
    gap: 0;
}

/* --- Sidebar --- */
.sidebar {
    width: 220px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
    align-self: flex-start;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #555;
    padding: 8px 0;
    transition: color 0.15s;
}

.sidebar-link .material-icons-outlined {
    font-size: 20px;
}

.sidebar-link:hover {
    color: var(--text-color);
}

.sidebar-footer {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    font-size: 0.7rem;
    color: #aaa;
}

.sidebar-footer a {
    color: #aaa;
    transition: color 0.15s;
}

.sidebar-footer a:hover {
    color: #666;
}

/* --- Right Sidebar --- */
.sidebar-right {
    flex-shrink: 0;
    position: sticky;
    top: 80px;
    align-self: flex-start;
    width: 260px;
    margin-left: 40px;
    overflow: hidden;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                margin 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-layout.feed-single .sidebar-right {
    width: 220px;
    margin-left: 32px;
}

.sidebar-right-inner {
    min-width: 220px;
}

.sidebar-heading {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #999;
    margin: 0 0 12px;
}

.sidebar-section {
    margin-bottom: 24px;
}

/* --- Most Active Users --- */
.active-users-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.active-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 8px;
    border-radius: 8px;
    transition: background-color 0.15s;
    text-decoration: none;
}

.active-user:hover {
    background: #f5f5f5;
}

.active-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

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

.active-user-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.active-user-meta {
    display: block;
    font-size: 0.68rem;
    color: #999;
}

.active-user .btn-follow-sm {
    flex-shrink: 0;
}

/* --- Popular Categories --- */
.popular-categories {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.popular-cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 8px;
    border-radius: 8px;
    transition: background-color 0.15s;
    text-decoration: none;
}

.popular-cat:hover {
    background: #f5f5f5;
}

.popular-cat-name {
    font-size: 0.8rem;
    color: var(--text-color);
    font-weight: 500;
}

.popular-cat-count {
    font-size: 0.68rem;
    color: #bbb;
}

.sidebar-right-footer {
    margin-top: 24px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    font-size: 0.65rem;
    color: #bbb;
}

.sidebar-right-footer a {
    color: #bbb;
    transition: color 0.15s;
}

.sidebar-right-footer a:hover {
    color: #888;
}

/* --- Category Page --- */
.category-page {
    width: 88%;
    max-width: 1600px;
    margin: 2rem auto;
}

.category-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.category-bar-left {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.category-tag {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
}

.category-count {
    font-size: 0.78rem;
    color: #999;
}

.btn-follow {
    padding: 6px 20px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--font-family);
    cursor: pointer;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s;
    border: 1px solid var(--accent-color);
    background: none;
    color: var(--accent-color);
}

.btn-follow:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-follow.following {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    color: #888;
}

.btn-follow.following:hover {
    background-color: #e5e5e5;
    border-color: #e5e5e5;
    color: #666;
}

.category-grid {
    columns: 4;
    column-gap: 12px;
}

.category-grid .grid-item {
    break-inside: avoid;
    margin-bottom: 12px;
}

/* --- Left Sidebar (always visible on desktop) --- */
.sidebar-left {
    flex-shrink: 0;
    position: sticky;
    top: 80px;
    align-self: flex-start;
    width: 240px;
    opacity: 1;
    overflow: hidden;
    margin-right: 32px;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                margin 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-layout.feed-single .sidebar-left {
    width: 240px;
    opacity: 1;
    margin-right: 32px;
}

/* --- Left Sidebar Profile Card --- */
.sidebar-profile-card {
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
    background: #fafafa;
    border-radius: 12px;
    padding: 16px 14px 18px;
    border: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-profile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 8px;
    transition: background-color 0.15s;
}

.sidebar-profile-link:hover {
    background: #f5f5f5;
}

.sidebar-profile-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e0e0e0;
}

.sidebar-profile-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.sidebar-profile-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-profile-bio {
    display: block;
    font-size: 0.7rem;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-profile-stats {
    display: flex;
    justify-content: space-between;
    padding: 10px 8px 0;
}

.sidebar-stat {
    text-align: center;
}

.sidebar-stat strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-color);
}

.sidebar-stat span {
    font-size: 0.62rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* --- Left Sidebar Nav --- */
.sidebar-left-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    white-space: nowrap;
}

.sidebar-left-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: #666;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background-color 0.15s, color 0.15s;
}

.sidebar-left-link:hover {
    background: #f5f5f5;
    color: var(--text-color);
}

.sidebar-left-link.active {
    color: var(--text-color);
    font-weight: 500;
}

.sidebar-left-link .material-icons-outlined {
    font-size: 20px;
}

/* --- Feed View Toggle Bar --- */
.feed-view-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.feed-view-toggles {
    display: flex;
    align-items: center;
    gap: 2px;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 3px;
}

.feed-view-btn {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 5px 10px;
    border: none;
    background: none;
    border-radius: 6px;
    cursor: pointer;
    color: #999;
    font-family: var(--font-family);
    font-size: 0.7rem;
    font-weight: 500;
    transition: background-color 0.15s, color 0.15s;
}

.feed-view-btn:hover {
    color: #666;
}

.feed-view-btn.active {
    background: #fff;
    color: var(--text-color);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.feed-view-btn .material-icons-outlined {
    font-size: 16px;
}

.feed-view-label {
    font-size: 0.65rem;
}

/* --- Feed --- */
.feed-wrapper {
    flex: 1;
    min-width: 0;
}

.feed {
    columns: 5;
    column-gap: 16px;
}

.feed.cols-4 { columns: 4; }
.feed.cols-5 { columns: 5; }
.feed.cols-6 { columns: 6; }

.feed.single-feed {
    columns: unset;
    max-width: 580px;
    margin: 0 auto;
}

.feed.single-feed .post-card {
    margin-bottom: 24px;
    border-radius: 12px;
}

.feed.single-feed .post-bar {
    opacity: 1;
    position: relative;
    background: none;
    padding: 10px 14px;
}

/* --- Logged-out State --- */
body.logged-out {
    padding-top: 0;
    overflow: hidden;
}

body.logged-out .header,
body.logged-out .main-layout {
    display: none;
}

/* --- Landing Page --- */
.landing {
    display: none;
    position: fixed;
    inset: 0;
    overflow: hidden;
    background: #f0f0f0;
}

body.logged-out .landing {
    display: block;
}

.landing-grid {
    position: absolute;
    inset: 0;
    background: url('back.png') center center / cover no-repeat;
    opacity: 0.55;
    pointer-events: none;
    user-select: none;
}

.landing-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.3) 0%, rgba(245,245,245,0.85) 70%);
}

.landing-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 48px 44px 40px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.landing-logo {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 8px;
}

.landing-tagline {
    font-size: 0.88rem;
    color: #888;
    margin: 0 0 28px;
    line-height: 1.5;
}

.landing-btn {
    width: 100%;
    padding: 11px 0;
    font-size: 0.88rem;
    border-radius: 8px;
}

.landing-login {
    font-size: 0.78rem;
    color: #999;
    margin: 16px 0 0;
}

.landing-login a {
    color: var(--accent-color);
    font-weight: 500;
    cursor: pointer;
}

/* Landing inline form */
.landing-form.hidden {
    display: none;
}

.landing-form-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 18px;
    color: var(--text-color);
}

.landing-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.landing-form input {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.15s;
}

.landing-form input:focus {
    border-color: var(--accent-color);
}

/* Hide mobile nav and main layout when logged out (landing visible) */
body.logged-out .mobile-nav {
    display: none !important;
}

body.logged-out .mobile-view-bar {
    display: none !important;
}

/* Standalone feed page (no sidebar) fallback */
.main-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 20px;
}

.post-card {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    break-inside: avoid;
    margin-bottom: 16px;
}

.post-media {
    width: 100%;
    max-height: 75vh;
    object-fit: cover;
    display: block;
}

.post-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.2s;
}

.post-card:hover .post-bar {
    opacity: 1;
}

.post-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.username {
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
}

.post-actions {
    display: flex;
    align-items: center;
    gap: 2px;
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: background-color 0.15s, color 0.15s;
}

.action-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.action-btn .material-icons-outlined {
    font-size: 20px;
}

.action-btn.liked .material-icons-outlined {
    font-variation-settings: 'FILL' 1;
    color: red;
}

/* --- Profile Page (profile.html) --- */
.profile-page {
    width: 88%;
    max-width: 1600px;
    margin: 2rem auto;
}

.profile-header {
    margin-bottom: 2rem;
}

.profile-hero {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #eee;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Edit buttons on profile images */
.edit-hero-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 1;
}

.profile-hero:hover .edit-hero-btn {
    opacity: 1;
}

.edit-hero-btn .material-icons-outlined {
    font-size: 18px;
}

.edit-avatar-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.profile-pic-container:hover .edit-avatar-btn {
    opacity: 1;
}

.edit-avatar-btn .material-icons-outlined {
    font-size: 14px;
}

.profile-pic-container {
    position: absolute;
    left: 32px;
    bottom: -40px;
    border: 4px solid var(--background-color);
    border-radius: 50%;
    background-color: var(--background-color);
}

.profile-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 52px 0 0 32px;
}

.profile-info {
    flex-grow: 1;
}

.profile-name {
    margin: 0 0 4px;
    font-size: 1.4rem;
    font-weight: 600;
}

.profile-bio {
    margin: 0 0 10px;
    color: #666;
    font-size: 0.85rem;
    max-width: 500px;
    line-height: 1.5;
}

.profile-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: #888;
}

.profile-stats strong {
    color: var(--text-color);
}

.profile-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    padding-top: 4px;
}

.profile-body {
    display: flex;
    gap: 40px;
    margin-top: 2rem;
}

.profile-work {
    flex: 1;
    min-width: 0;
}

/* --- Profile Right Sidebar --- */
.profile-sidebar {
    width: 260px;
    flex-shrink: 0;
    position: sticky;
    top: 88px;
    align-self: flex-start;
}

.profile-sidebar-section {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.profile-sidebar-section:last-of-type {
    border-bottom: none;
}

/* Following List */
.following-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.following-empty {
    text-align: center;
    padding: 16px 0;
    color: #bbb;
}

.following-empty .material-icons-outlined {
    font-size: 28px;
    color: #ddd;
    margin-bottom: 4px;
    display: block;
}

.following-empty p {
    font-size: 0.78rem;
    margin: 0;
}

.following-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
}

.following-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

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

.following-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-color);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.following-medium {
    font-size: 0.7rem;
    color: #999;
}

/* Quick Actions */
.profile-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.profile-action-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.82rem;
    color: #555;
    transition: background-color 0.15s;
}

.profile-action-link:hover {
    background-color: #f5f5f5;
}

.profile-action-link .material-icons-outlined {
    font-size: 20px;
    color: #888;
}

.action-count {
    margin-left: auto;
    font-size: 0.72rem;
    color: #bbb;
    font-weight: 500;
}

/* Category Tags */
.profile-category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.profile-cat-tag {
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 20px;
    background: #f5f5f5;
    color: #555;
    transition: background-color 0.15s, color 0.15s;
}

.profile-cat-tag:hover {
    background-color: var(--accent-color);
    color: #fff;
}

/* Suggested Artists */
.suggested-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.suggested-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.suggested-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

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

.suggested-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-color);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggested-medium {
    font-size: 0.7rem;
    color: #999;
}

.btn-follow-sm {
    font-size: 0.7rem;
    font-weight: 500;
    font-family: var(--font-family);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid var(--accent-color);
    background: none;
    color: var(--accent-color);
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.15s, color 0.15s;
}

.btn-follow-sm:hover {
    background-color: var(--accent-color);
    color: #fff;
}

/* Visitor CTA (Follow / Message buttons) */
.visitor-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-follow-profile,
.btn-message-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-family);
    cursor: pointer;
    transition: background-color 0.15s, color 0.15s;
}

.btn-follow-profile {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
}

.btn-follow-profile:hover {
    background-color: var(--accent-hover-color);
}

.btn-follow-profile.following {
    background: none;
    border: 1px solid var(--border-color);
    color: #666;
}

.btn-follow-profile.following:hover {
    border-color: #ccc;
    background-color: #f5f5f5;
}

.btn-message-profile {
    background: none;
    border: 1px solid var(--border-color);
    color: #555;
}

.btn-message-profile:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.btn-follow-profile .material-icons-outlined,
.btn-message-profile .material-icons-outlined {
    font-size: 18px;
}

/* Sidebar About (visitor view) */
.sidebar-about-bio {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.5;
    margin: 0 0 14px;
}

.sidebar-about-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.about-stat strong {
    font-size: 0.95rem;
    color: var(--text-color);
}

.about-stat span {
    font-size: 0.68rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sidebar-about-joined {
    font-size: 0.72rem;
    color: #bbb;
    margin: 0;
}

.tabs {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.tab-link {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-family);
    cursor: pointer;
    position: relative;
    color: #888;
    transition: color 0.15s;
}

.tab-link:hover {
    color: var(--text-color);
}

.tab-link.active {
    color: var(--text-color);
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.work-masonry {
    columns: 4;
    column-gap: 12px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    break-inside: avoid;
    margin-bottom: 12px;
}

.grid-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.03);
}

/* --- Create Modal --- */
.create-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.create-overlay.active {
    display: flex;
}

.create-modal {
    background: #fff;
    border-radius: 14px;
    width: 90%;
    max-width: 820px;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
}

.create-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.create-header h2 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}

.create-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    display: flex;
    padding: 0;
}

.create-close:hover {
    color: #333;
}

.create-body {
    display: flex;
    gap: 28px;
    padding: 24px;
}

.create-images-col {
    flex: 1;
    min-width: 0;
}

.create-dropzone {
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
}

.create-dropzone:hover,
.create-dropzone.drag-over {
    border-color: var(--accent-color);
    background-color: rgba(0, 128, 128, 0.03);
}

.create-dropzone .material-icons-outlined {
    font-size: 36px;
    color: #ccc;
    margin-bottom: 8px;
}

.create-dropzone p {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 4px;
}

.create-hint {
    font-size: 0.72rem;
    color: #bbb;
}

.create-previews {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 14px;
}

.create-preview {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.create-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.create-preview:first-child::after {
    content: 'Cover';
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: 0.6rem;
    font-weight: 600;
    background: var(--accent-color);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
}

.create-preview .remove-preview {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.5);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.15s;
    font-size: 14px;
    line-height: 1;
    padding: 0;
}

.create-preview:hover .remove-preview {
    opacity: 1;
}

.create-details-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.create-details-col input,
.create-details-col select,
.create-details-col textarea {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.15s;
    width: 100%;
    box-sizing: border-box;
}

.create-details-col input:focus,
.create-details-col select:focus,
.create-details-col textarea:focus {
    border-color: var(--accent-color);
}

.create-details-col textarea {
    resize: vertical;
    min-height: 80px;
}

.create-presentation {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 12px 14px;
}

.create-pres-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #999;
    display: block;
    margin-bottom: 10px;
}

.create-display-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.display-option {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.78rem;
    color: #666;
}

.display-option input {
    display: none;
}

.display-swatch {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: border-color 0.15s;
}

.display-swatch.light {
    background: #f5f5f5;
    border-color: #ddd;
}

.display-swatch.dark {
    background: #1a1a1a;
    border-color: #333;
}

.display-option input:checked ~ .display-swatch {
    border-color: var(--accent-color);
}

.display-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.78rem;
    color: #666;
    margin-left: auto;
}

.display-toggle input {
    accent-color: var(--accent-color);
}

.btn-publish {
    width: 100%;
    padding: 11px 0;
    border: none;
    border-radius: 8px;
    background-color: var(--accent-color);
    color: #fff;
    font-family: var(--font-family);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s;
    margin-top: 4px;
}

.btn-publish:hover {
    background-color: var(--accent-hover-color);
}

.btn-publish:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.create-error {
    font-size: 0.78rem;
    color: #e53935;
    margin: 4px 0 0;
    min-height: 1em;
}

/* --- Post Detail Overlay --- */
.detail-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.detail-overlay.active {
    display: flex;
}

.detail-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    display: flex;
    z-index: 10;
    padding: 8px;
}

.detail-close:hover {
    color: #fff;
}

.detail-close .material-icons-outlined {
    font-size: 28px;
}

.detail-content {
    display: flex;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    width: 90%;
    max-width: 1000px;
    max-height: 88vh;
}

.detail-media {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
}

.detail-media.bg-light {
    background: #f5f5f5;
}

.detail-media.bg-dark {
    background: #1a1a1a;
}

.detail-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.detail-info {
    flex: 0.8;
    padding: 28px 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-left: 1px solid #f0f0f0;
}

.detail-creator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.detail-name {
    font-size: 0.88rem;
    font-weight: 600;
    display: block;
    color: var(--text-color);
}

.detail-date {
    font-size: 0.72rem;
    color: #999;
}

.detail-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-color);
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.detail-medium,
.detail-tools {
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 20px;
    background: #f5f5f5;
    color: #666;
}

.detail-description {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.detail-process h4 {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #999;
    margin: 0 0 10px;
}

.detail-process-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.detail-process-images img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.15s;
}

.detail-process-images img:hover {
    opacity: 0.8;
}

.detail-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.detail-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: none;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 0.82rem;
    color: #555;
    transition: background-color 0.15s, border-color 0.15s;
}

.detail-action:hover {
    background-color: #f8f8f8;
    border-color: #ccc;
}

.detail-action .material-icons-outlined {
    font-size: 20px;
    color: #888;
}

.detail-action.saved {
    background-color: rgba(0, 128, 128, 0.06);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.detail-action.saved .material-icons-outlined {
    color: var(--accent-color);
}

/* --- Updated Post Cards --- */
.post-card[data-bg="dark"] {
    background-color: #1a1a1a;
    border-color: #333;
}

.post-card .post-bar {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.post-card[data-bg="dark"] .post-bar {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.post-title-bar {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-top: 4px;
}

.post-medium-tag {
    font-size: 0.62rem;
    padding: 2px 8px;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    margin-left: auto;
    flex-shrink: 0;
}

/* --- Feed Empty State --- */
.feed-empty {
    text-align: center;
    padding: 80px 20px;
    color: #bbb;
}

.feed-empty .material-icons-outlined {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 12px;
}

.feed-empty p {
    font-size: 0.88rem;
    margin: 0 0 20px;
}

/* Create add-more tile */
.create-add-more {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s;
}

.create-add-more:hover {
    border-color: var(--accent-color);
}

.create-add-more .material-icons-outlined {
    font-size: 24px;
    color: #ccc;
}

/* Post card clickable */
.post-card {
    cursor: pointer;
}

.post-bar .post-user div {
    display: flex;
    flex-direction: column;
}

.post-bar .post-user {
    flex: 1;
    min-width: 0;
}

/* --- Discover Profile Card (in feed) --- */
.discover-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    break-inside: avoid;
    margin-bottom: 16px;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.discover-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discover-card-blur {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px 16px;
    gap: 6px;
}

.discover-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.discover-card-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discover-follow-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 500;
    font-family: var(--font-family);
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.15s;
}

.discover-follow-btn:hover {
    background: rgba(255,255,255,0.35);
}

.discover-follow-btn .material-icons-outlined {
    font-size: 14px;
}

.discover-card-tag {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
}

.discover-card-bio {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.discover-card-stats {
    display: flex;
    gap: 14px;
    margin-top: 2px;
}

.discover-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.7);
}

.discover-stat .material-icons-outlined {
    font-size: 14px;
}

/* --- Left Sidebar Sections --- */
.sidebar-left-section {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    white-space: normal;
}

.sidebar-trending {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.trending-tag {
    font-size: 0.72rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    background: #f0f0f0;
    color: #555;
    transition: background-color 0.15s, color 0.15s;
}

.trending-tag:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.sidebar-activity {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-activity-empty {
    font-size: 0.78rem;
    color: #bbb;
    margin: 0;
    padding: 8px 0;
}

.sidebar-activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    border-radius: 8px;
    transition: background-color 0.15s;
}

.sidebar-activity-item:hover {
    background: #f5f5f5;
}

.sidebar-activity-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-activity-text {
    font-size: 0.75rem;
    color: #555;
    line-height: 1.3;
}

.sidebar-activity-text strong {
    font-weight: 600;
    color: var(--text-color);
}

.sidebar-activity-time {
    font-size: 0.65rem;
    color: #bbb;
    margin-left: auto;
    flex-shrink: 0;
}

.sidebar-left-footer {
    margin-top: 24px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    font-size: 0.65rem;
    color: #bbb;
    white-space: nowrap;
}

.sidebar-left-footer a {
    color: #bbb;
    transition: color 0.15s;
}

.sidebar-left-footer a:hover {
    color: #888;
}

/* --- Mobile Bottom Navigation --- */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    border-top: 1px solid #e8e8e8;
    z-index: 1100;
    justify-content: space-around;
    align-items: center;
    padding: 0 8px;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: #999;
    font-size: 0.62rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    transition: color 0.15s;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-item .material-icons-outlined {
    font-size: 22px;
}

.mobile-nav-item.active {
    color: var(--accent-color);
}

.mobile-nav-item:active {
    color: var(--accent-color);
}

/* --- Mobile Infinity Grid --- */
.infinity-grid {
    display: none;
    columns: 3;
    column-gap: 3px;
    padding: 0;
}

.infinity-grid.active {
    display: block;
}

.infinity-item {
    break-inside: avoid;
    margin-bottom: 3px;
    overflow: hidden;
}

.infinity-item img {
    width: 100%;
    display: block;
}

/* Mobile view toggle bar */
.mobile-view-bar {
    display: none;
    justify-content: center;
    gap: 0;
    padding: 8px 0 12px;
    background: #fff;
    position: sticky;
    top: 50px;
    z-index: 50;
}

.mobile-view-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 7px 20px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #888;
    font-family: var(--font-family);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s, color 0.15s;
}

.mobile-view-btn:first-child {
    border-radius: 8px 0 0 8px;
}

.mobile-view-btn:last-child {
    border-radius: 0 8px 8px 0;
    border-left: none;
}

.mobile-view-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.mobile-view-btn .material-icons-outlined {
    font-size: 16px;
}