:root {
	--primary-color: #ff4500;
	--secondary-color: #0079d3;
	--dark-bg: #1a1a1b;
	--lighter-bg: #f6f7f8;
	--light-bg: #f6f7f8;
	--border-color: #343536;
	--text-primary: #2d2d2d;
	--text-secondary: #000;
}

body.archive.post-type-archive.post-type-archive-topic.wp-custom-logo.wp-embed-responsive {
    background-color: var(--light-bg);
    color: var(--text-primary);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Navigation Styles */
.forum-navbar {
	background-color: white;
	border-bottom: 1px solid var(--border-color);
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	padding: 8px 0;
}

.nav-brand {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--primary-color);
	text-decoration: none;
	display: flex;
	align-items: center;
}

.nav-brand:hover {
	color: var(--primary-color);
}

.nav-search {
	max-width: 500px;
}

.search-container {
    position: relative;
    margin-top: 15px;
}

.search-icon {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-secondary);
}

.search-box-nav {
	padding-left: 40px;
	border-radius: 20px;
	border: 1px solid var(--border-color);
	width: 100%;
}

.search-box-nav:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 2px rgba(255, 69, 0, 0.1);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 15px;
}

.nav-link-item {
	color: var(--text-primary);
	text-decoration: none;
	padding: 8px 12px;
	border-radius: 4px;
	transition: all 0.2s ease;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 6px;
}

.nav-link-item:hover {
	background-color: rgba(255, 69, 0, 0.1);
	color: var(--primary-color);
}

.nav-link-item.active {
	background-color: rgba(255, 69, 0, 0.1);
	color: var(--primary-color);
	font-weight: 500;
}

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

.user-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
}

.user-dropdown-toggle {
	background: none;
	border: none;
	padding: 4px;
	border-radius: 4px;
	cursor: pointer;
}

.user-dropdown-toggle:hover {
	background-color: rgba(0,0,0,0.05);
}

.user-dropdown-menu {
	min-width: 220px;
	padding: 8px 0;
}

.user-info {
	padding: 12px 16px;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 8px;
}

.user-email {
	font-size: 0.85rem;
	color: var(--text-secondary);
}

.dropdown-item {
	padding: 8px 16px;
	color: var(--text-primary);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.2s ease;
}

.dropdown-item:hover {
	background-color: rgba(255, 69, 0, 0.1);
	color: var(--primary-color);
}

.dropdown-divider {
	margin: 8px 0;
	border-top: 1px solid var(--border-color);
}

.notification-badge {
	position: absolute;
	top: -5px;
	right: -5px;
	background-color: var(--primary-color);
	color: white;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	font-size: 0.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.notification-btn {
	position: relative;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--text-primary);
}


/* Forum Container */
.forum-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.main-content {
	display: flex;
	margin-top: 20px;
	gap: 20px;
}


/* All other existing styles remain the same */
.posts-container {
	flex: 1;
	min-width: 0;
}

.sidebar {
	width: 300px;
	flex-shrink: 0;
}

.post-card {
	background-color: var(--light-bg);
	border: 1px solid var(--border-color);
	border-radius: 4px;
	margin-bottom: 10px;
	overflow: hidden;
}

.post-card:hover {
	border-color: var(--text-secondary);
}

.vote-container {
	background-color: var(--light-bg);
	width: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 8px 4px;
}

.vote-btn {
	background: transparent;
	border: none;
	padding: 2px;
	border-radius: 2px;
	line-height: 1;
	color: var(--text-secondary);
}

.vote-btn:hover {
	background-color: rgba(255,255,255,0.1);
}

.vote-up:hover,
.vote-up.active {
	color: #ff4500;
}

.vote-down:hover,
.vote-down.active {
	color: #7193ff;
}

.vote-count {
	font-weight: bold;
	font-size: 0.85rem;
	margin: 4px 0;
}

.post-content {
	padding: 8px;
	flex: 1;
}

.post-title {
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 8px;
	color: #000;
}

.post-title a {
	color: inherit;
	text-decoration: none;
}

.post-title a:hover {
	color: var(--text-secondary);
}

.post-meta {
	font-size: 0.8rem;
	color: var(--text-secondary);
	margin-bottom: 8px;
}

.post-actions {
	display: flex;
	gap: 12px;
	margin-top: 12px;
}

.action-btn {
	background: transparent;
	border: none;
	color: var(--text-secondary);
	font-size: 0.85rem;
	padding: 4px 8px;
	border-radius: 4px;
}

.action-btn:hover {
	background-color: rgba(255,255,255,0.1);
	color: var(--text-primary);
}

.btn-ask {
	background-color: var(--primary-color);
	color: white;
	font-weight: bold;
	border: none;
	padding: 8px 20px;
	border-radius: 20px;
	width: 100%;
	margin-bottom: 15px;
}

.btn-ask:hover {
	background-color: #ff5700;
}

.sidebar-widget {
	background-color: var(--light-bg);
	border: 1px solid var(--border-color);
	border-radius: 4px;
	padding: 15px;
	margin-bottom: 15px;
}

.sidebar-title {
	font-size: 0.9rem;
	font-weight: bold;
	margin-bottom: 12px;
}

.communities-container {
	margin-top: 30px;
}

.communities-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--border-color);
}

.btn-create-community {
	background-color: var(--primary-color);
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: 20px;
	font-weight: bold;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.btn-create-community:hover {
	background-color: #ff5700;
	color: white;
}

.communities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.community-card {
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 20px;
	transition: all 0.3s ease;
}

.community-card:hover {
	border-color: var(--text-secondary);
	transform: translateY(-2px);
}

.community-header {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	gap: 15px;
}

.community-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: var(--secondary-color);
	margin-right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.2rem;
}

.community-name {
	font-weight: bold;
	font-size: 1.1rem;
	margin-bottom: 5px;
}

.community-name a {
	color: inherit;
	text-decoration: none;
}

.community-name a:hover {
	color: var(--text-secondary);
}

.community-stats {
	color: var(--text-secondary);
	font-size: 0.85rem;
}

.community-description {
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.community-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.community-item {
	display: flex;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid var(--border-color);
}

.community-item:last-child {
	border-bottom: none;
}

.btn-join {
	background-color: var(--primary-color);
	color: white;
	border: none;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 500;
}

.btn-join:hover {
	background-color: #ff5700;
}

.btn-joined {
	background-color: transparent;
	color: var(--text-secondary);
	border: 1px solid var(--text-secondary);
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 0.85rem;
}

.community-topics {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 10px 0;
}

.topic-tag {
	background-color: rgba(255, 69, 0, 0.1);
	color: var(--primary-color);
	font-size: 0.75rem;
	padding: 3px 8px;
	border-radius: 12px;
}

.pagination-container {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.page-link {
	background-color: var(--light-bg);
	border-color: var(--border-color);
	color: var(--text-primary);
}

.page-link:hover {
	background-color: rgba(255,255,255,0.1);
	border-color: var(--text-secondary);
}

.page-item.active .page-link {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.back-home {
	color: var(--text-secondary);
	text-decoration: none;
}

.back-home:hover {
	color: var(--text-primary);
}

.category-filter {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.category-btn {
	background-color: transparent;
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 0.9rem;
}

.category-btn.active {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
}

.category-btn:hover {
	background-color: rgba(255,255,255,0.1);
	border-color: var(--text-secondary);
	color: var(--text-primary);
}

.empty-state {
	text-align: center;
	padding: 60px 20px;
	color: var(--text-secondary);
}

.empty-icon {
	font-size: 3rem;
	color: var(--text-secondary);
	margin-bottom: 20px;
}

.search-box {
	border: 1px solid var(--border-color);
	border-radius: 4px;
	padding: 8px 12px;
	width: 100%;
}

.search-box:focus {
	outline: none;
	border-color: var(--text-secondary);
}

.form-control,
.form-control:focus {
	border-color: var(--border-color);
	color: var(--text-primary);
}

.active-page {
	font-weight: bold;
	background-color: rgba(255, 69, 0, 0.1);
	border-left: 3px solid var(--primary-color);
}

.profile-img {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
}

.trending-badge {
	background-color: var(--primary-color);
	color: white;
	font-size: 0.7rem;
	padding: 2px 6px;
	border-radius: 10px;
	margin-left: 8px;
}

.create-community-container {
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 30px;
	margin-top: 30px;
}

.create-title {
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--border-color);
}

.form-control,
.form-select,
.form-textarea {
	border: 1px solid var(--border-color);
	color: var(--text-primary);
}

.form-label {
	color: var(--text-primary);
	font-weight: 500;
	margin-bottom: 8px;
}

.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	padding: 10px 24px;
	font-weight: 500;
}

.btn-primary:hover {
	background-color: #ff5700;
	border-color: #ff5700;
}

.btn-outline-secondary {
	border-color: var(--border-color);
	color: var(--text-secondary);
}

.btn-outline-secondary:hover {
	background-color: rgba(255,255,255,0.1);
	border-color: var(--text-secondary);
	color: var(--text-primary);
}

.community-name-preview {
	background-color: rgba(255, 69, 0, 0.1);
	border: 1px solid var(--primary-color);
	border-radius: 4px;
	padding: 15px;
	margin-top: 10px;
}

.preview-label {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-bottom: 5px;
}

.preview-value {
	color: var(--primary-color);
	font-weight: bold;
	font-size: 1.1rem;
}

.icon-preview {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: var(--secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.5rem;
	margin-right: 15px;
}

.type-option {
	border: 2px solid var(--border-color);
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.type-option:hover {
	border-color: var(--text-secondary);
}

.type-option.selected {
	border-color: var(--primary-color);
	background-color: rgba(255, 69, 0, 0.05);
}

.type-icon {
	font-size: 2rem;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.type-title {
	font-weight: bold;
	margin-bottom: 5px;
}

.type-description {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.rules-box {
	background-color: rgba(0, 121, 211, 0.1);
	border: 1px solid var(--secondary-color);
	border-radius: 4px;
	padding: 20px;
	margin-top: 20px;
}

.rules-title {
	color: var(--secondary-color);
	font-weight: bold;
	margin-bottom: 15px;
}

.post-type-selector {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 15px;
}

.post-type-btn {
	background: transparent;
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 6px;
}

.post-type-btn.active {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
}

.comment-section {
	background-color: var(--light-bg);
	border: 1px solid var(--border-color);
	border-radius: 4px;
	padding: 20px;
	margin-top: 20px;
}

.comment {
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 4px;
	padding: 12px;
	margin-bottom: 16px;
	border-left: 3px solid var(--border-color);
}

.comment.reply {
	margin-left: 40px;
	background-color: rgba(255, 255, 255, 0.8);
	border-top: 1px solid #efefef;
	border-right: 1px solid #efefef;
	border-bottom: 1px solid #efefef;
}

.comment-meta {
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-bottom: 8px;
}

.comment-content {
	line-height: 1.5;
	margin-bottom: 12px;
}

.comment-actions {
	display: flex;
	gap: 12px;
	margin-top: 8px;
}

.comment-vote {
	display: flex;
	align-items: center;
	gap: 8px;
}

.comment-form {
	background-color: var(--light-bg);
	border: 1px solid var(--border-color);
	border-radius: 4px;
	padding: 20px;
	margin-bottom: 20px;
}

.share-buttons {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.share-btn {
	background-color: rgba(255,255,255,0.1);
	border: 1px solid var(--border-color);
	color: var(--text-primary);
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 5px;
	text-decoration: none;
}

.share-btn:hover {
	background-color: rgba(255,255,255,0.2);
	color: var(--text-primary);
}

.back-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.9rem;
}

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

.community-banner {
	background-color: var(--light-bg);
	border: 1px solid var(--border-color);
	border-radius: 4px;
	padding: 15px;
	margin-bottom: 20px;
}

.community-icon-large {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.5rem;
}

.join-btn {
	background-color: var(--primary-color);
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: 20px;
	font-weight: bold;
}

.join-btn:hover {
	background-color: #ff5700;
}

.create-post-container {
	background-color: var(--light-bg);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 30px;
	margin-top: 30px;
}
		


.form-container {
    padding: 10px 0;
}
.topic-form {
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
}
.form-input {
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}
.topic-form label {
    margin-bottom: 10px;
    font-weight: 600;
}
.topic-form input[type="text"], .topic-form textarea, .topic-form select {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 14px;
    color: #111827;
    box-sizing: border-box;
}

.topic-form textarea {
    resize: vertical;
    min-height: 120px;
}

.topic-form input:focus,
.topic-form textarea:focus,
.topic-form select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.topic-form input[type="submit"] {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.topic-form input[type="submit"]:hover {
    background-color: #1e40af;
}

.topic-form input[type="submit"]:active {
    transform: translateY(1px);
}


.vip-forum-topics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.forum-topic {
    padding: 1rem 1.25rem;
    border: 1px solid #343536;
    border-radius: 4px;
    background: #ffffff;
    transition: box-shadow 0.2s ease, transform 0.1s ease;
}

.forum-topic:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transform: translateY(-1px);
}

.forum-topic .post-actions {
    margin-top: 15px;
}

.topic-title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}

.topic-title a {
    color: #111827;
    text-decoration: none;
}
.post-actions > * {
    margin-right: 10px;
    font-size: 14px;
    background: #fff;
    border: navajowhite;
    color: #444;
}

.topic-title a:hover {
    text-decoration: underline;
}

.topic-meta {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 15px;
}

.topic-meta span:not(:last-child)::after {
    content: "•";
    margin: 0 0.35rem;
}

.topic-excerpt {
    margin: 0;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.4;
}

/* Stats (Likes + Comments) */
.topic-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #6b7280;
    white-space: nowrap;
}

.topic-likes {
    color: #ef4444;
}

span.topic-likes {
    min-width: 40px;
    display: inline-block;
}

.topic-comments {
    color: #3b82f6;
}
.single-topic  li.comment {
    margin: 30px 0;
    width: auto;
    display: block;
    padding-bottom: 25px;
}
.single-topic li.comment li {
    background: #d9d9d93b;
    padding: 25px;
    border-radius: 15px;
}
.wp-block-comment-author-name a, .wp-block-comment-author-name {
    color: var(--wp--preset--color--accent-1);
}

/* Login & Signup */
.sfp-auth-form {
    max-width: 550px;
    margin: 1rem 0;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
}

.sfp-auth-form input {
    width: 100%;
    padding: 0.6rem;
    margin-bottom: 0.75rem;
	box-sizing: border-box;
}

.sfp-auth-form button {
    width: 100%;
    padding: 0.6rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
}
span.toggle-btn {
    margin-top: 20px;
    display: block;
    color: #0606f1;
    font-size: 16px;
    text-decoration: underline;
    text-align: center;
    cursor: pointer;
}
form.sfp-auth-form.signup-form {
    /*display: none;*/
}
ul.sfp-errors {
    padding-left: 0;
}
.sfp-errors li {
    list-style-type: none;
    background: #eb556247;
    font-size: 14px;
    padding: 2px 10px;
    border: 1px solid #d18f8f;
    margin-bottom: 5px;
}

.sfp-strength {
    margin-top: 6px;
    font-size: 14px;
    font-weight: bold;
}

.sfp-strength.weak {
    color: #dc3232;
}

.sfp-strength.medium {
    color: #ffb900;
}

.sfp-strength.strong {
    color: #46b450;
}
.sfp-comment strong.user {
    display: block;
}
.sfp-comment .content {
    margin-top: 10px;
    border: 1px solid #ede8e8;
    padding: 20px;
    border-radius: 13px;
    background: #f9f9f9;
}
/* New Comments Css*/
button#sfp_submit_comment {
    padding: 10px;
    margin-top: 15px;
    background: #4f94d4;
    border: 1px solid #3582c4;
    color: #fff;
    border-radius: 3px;
    text-transform: capitalize;
    cursor: pointer;
}
.sfp-comments .sfp-comment {
    margin-bottom: 40px;
}
div.sfp-reply-form {
    display: none;
}
.sfp-comment > .sfp-comment {
    padding-left: 90px;
}
.sfp-comment-form h2 {
    margin-bottom: 0;
}
span.sorted {
    text-transform: capitalize;
}

ul.page-numbers {
    list-style-type: none;
    margin: 40px auto;
    display: flex;
    border: 1px solid #999;
    width: max-content;
    padding: 4px 0px;
    border-radius: 5px;
    overflow: hidden;
}
ul.page-numbers li a, ul.page-numbers li span {
    padding: 5px 15px;
    background: #fff;
    border-right: 1px solid #999;
	text-decoration: none;
}
ul.page-numbers li:last-child a , ul.page-numbers li:last-child span {
    border-right: 0px;
}
ul.page-numbers li a.current, ul.page-numbers li span.current {
	background: #ff4500;
	color: #fff;
}
div#topics-wrapper {
    min-height: 60vh;
}
.topic-share {
    margin: 15px 0 5px;
    display: none;
}
.topic-share a, .topic-share button {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--primary-color);
    padding: 5px 15px;
    background: var(--primary-color);
    border-radius: 8px;
}
p.error {
    color: #db0f0f;
    border: 1px solid;
    border-radius: 5px;
    padding: 8px 15px;
    background: #ff000017;
}
button.custom-menu-toggle-btn {
    border: navajowhite;
    background: none;
}
ul.custom-menu-toggle-ul {
    position: absolute;
    background: #fff;
    top: 40px;
    list-style-type: none;
    padding: 0;
    box-shadow: 0px 0px 20px #ccc;
    border-radius: 2px;
    display: none;
    right: 0;
}

/* Responsive Navigation */
@media (max-width: 992px) {
	.nav-search {
		order: 3;
		width: 100%;
		margin-top: 10px;
	}
	
	.nav-links {
		display: none;
		flex-direction: column;
		width: 100%;
		background: white;
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1000;
		box-shadow: 0 4px 6px rgba(0,0,0,0.1);
		padding: 10px;
	}
	
	.nav-links.show {
		display: flex;
	}
	
	.mobile-menu-btn {
		display: block;
	}
	
	.user-menu {
		margin-left: auto;
	}
	
	.main-content {
		flex-direction: column;
	}
	.sidebar {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.nav-brand span {
		display: none;
	}
}

/* Mobile */
@media (max-width: 600px) {
    .forum-topic {
        flex-direction: column;
    }

    .topic-likes {
        align-self: flex-end;
    }
}



/* Mobile spacing */
@media (max-width: 480px) {
    .topic-form {
        padding: 1.25rem;
    }
}


