.card form {
    padding-top: 0px !important;
}

@media (max-width: 1024px) {
    .leftContent {
        display: none;
    }
}

.suggestion-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.suggestion-item:hover {
    border: 1px solid #c9c9c9;
}

.suggestion-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.suggestion-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

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

.suggestion-title a:hover {
    color: #ff3131;
    text-decoration: underline;
}

.suggestion-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #6c757d;
}

.meta-content {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
	padding-top: 8px;
}

.user-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.suggestion-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 16px;
}

.suggestion-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e9ecef;
    padding-top: 12px;
}

.suggestion-stats {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #6c757d;
}

.stat-item i {
    font-size: 12px;
}

.reply-count { color: #17a2b8; padding-left: 10px; }

.featured-indicator {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    padding: 2px 6px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #8b6914;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 8px;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(255, 215, 0, 0.2);
    line-height: 1;
}

.featured-indicator i {
    font-size: 10px;
    color: #8b6914;
}

.page-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.add-suggestion-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 16px;
    background: linear-gradient(135deg, #008bf6 0%, #00afff 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(0, 139, 246, 0.3);
}

.add-suggestion-btn:hover {
    background: linear-gradient(135deg, #1d9dff 0%, #17b5fd 100%);
    text-decoration: none;
    color: white;
}

.add-suggestion-btn:active,
.add-suggestion-btn:visited,
.add-suggestion-btn:focus {
    color: white !important;
    text-decoration: none;
}

.add-suggestion-btn i {
    font-size: 13px;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.suggestion-container {
	max-width: none;
	margin: 0 auto;
    padding: 0 16px;
}

.suggestion-detail-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.suggestion-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.suggestion-detail-main {
    flex: 1;
}

.suggestion-detail-title {
    font-size: 24px;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.suggestion-detail-badges {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.suggestion-featured-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    padding: 3px 8px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #8b6914;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 8px;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(255, 215, 0, 0.2);
    line-height: 1;
}

.suggestion-featured-badge i {
    font-size: 10px;
    color: #8b6914;
}

.suggestion-detail-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #6c757d;
    flex-wrap: wrap;
}

.meta-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.suggestion-detail-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 16px;
    padding-bottom: 10px;
}

.suggestion-detail-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e9ecef;
    padding-top: 12px;
}

.suggestion-detail-stats {
    display: flex;
    align-items: center;
    gap: 8px;
}

.score-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 12px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    position: relative;
}

.score-stat.score-updating {
    animation: scoreUpdate 0.4s ease;
}

@keyframes scoreUpdate {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.score-stat.score-increase {
    animation: scoreIncrease 0.6s ease;
}

.score-stat.score-decrease {
    animation: scoreDecrease 0.6s ease;
}

@keyframes scoreIncrease {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes scoreDecrease {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.score-stat.positive {
    background: #f0f9f0;
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.2);
}

.score-stat.negative {
    background: #fef2f2;
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.2);
}

.score-stat.neutral {
    background: #f8f9fa;
    color: #6b7280;
    border-color: rgba(107, 114, 128, 0.2);
}

.score-stat:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.score-stat.positive:hover {
    background: #e6f7ea;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.15);
}

.score-stat.negative:hover {
    background: #fee2e2;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.15);
}

.score-stat.neutral:hover {
    background: #e5e7eb;
    box-shadow: 0 2px 8px rgba(107, 114, 128, 0.15);
}

.score-stat i {
    font-size: 14px;
    opacity: 0.8;
}

.score-stat .score-number {
    font-weight: 600;
    font-size: 14px;
}

.score-stat .score-text {
    font-size: 11px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-left: 2px;
}

.vote-stat {
    background: transparent;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #6c757d;
}

.vote-stat:hover:not(.disabled) {
    background: #f3f4f6;
    color: #374151;
}

.vote-stat.upvote-stat:hover:not(.disabled) {
    color: #4caf50;
}

.vote-stat.downvote-stat:hover:not(.disabled) {
    color: #dc2626;
}

.vote-stat.liked {
    color: #4CAF50;
    background: #eefaef;
}

.vote-stat.disliked {
    color: #dc2626;
    background: #fef2f2;
}

.vote-stat.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vote-stat.disabled:hover {
    background: transparent;
    color: #6c757d;
}

.action-btn.secondary {
    background: #6c757d;
}

.action-btn.secondary:hover {
    background: #545b62;
}

.suggestion-action-btn {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 4px 12px;
    background: #008bf6;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s ease;
}

.suggestion-action-btn:hover {
    background: #0056b3;
    text-decoration: none;
    color: white;
}

.suggestion-action-btn:active,
.suggestion-action-btn:visited,
.suggestion-action-btn:focus {
    color: white !important;
    text-decoration: none;
}

.suggestion-action-btn.secondary {
    background: #6c757d;
}

.suggestion-action-btn.secondary:hover {
    background: #545b62;
    color: white;
}

.suggestion-action-btn.secondary:active,
.suggestion-action-btn.secondary:visited,
.suggestion-action-btn.secondary:focus {
    color: white !important;
    text-decoration: none;
}

.suggestion-detail-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.disabled-filter {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed !important;
}

.disabled-filter input[type="checkbox"] {
    cursor: not-allowed !important;
}

.disabled-filter span {
    cursor: not-allowed !important;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    min-height: 24px;
    box-sizing: border-box;
}

.status-pending { background: #e7e7e7; color: #6c757d; }
.status-under_review { background: #fff3cd; color: #856404; }
.status-planned { background: #cce5ff; color: #004085; }
.status-in_progress { background: #d1ecf1; color: #0c5460; }
.status-completed { background: #d4edda; color: #155724; }
.status-rejected { background: #fee2e2; color: #991b1b; }

.priority-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    min-height: 24px;
    box-sizing: border-box;
}

.priority-low { background: #e2e8f0; color: #4a5568; }
.priority-medium { background: #fed7aa; color: #9a3412; }
.priority-high { background: #fecaca; color: #991b1b; }

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: #e9ecef;
    color: #495057;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}

.category-tag:hover {
    background: #008bf6;
    color: white;
    text-decoration: none;
}

.staff-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.staff-notice-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #856404;
    margin-bottom: 8px;
    font-size: 14px;
}

.staff-notice-content {
    color: #856404;
    font-size: 14px;
    line-height: 1.5;
}

.back-to-suggestions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #008bf6;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 8px 16px;
    border-radius: 6px;
    background: white;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.back-to-suggestions:hover {
    color: #0056b3;
    background: #f8f9fa;
    text-decoration: none;
    border-color: #008bf6;
}

.discussion-section {
    margin-top: 20px;
}

.discussion-header {
	margin-top: 60px;
}

.discussion-title {
    font-weight: 500;
    color: #3C4858;
}

.suggestion-submit-form {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.form-section {
	margin-top: 30px;
    margin-bottom: 30px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.form-label .required {
    color: #dc3545;
    margin-left: 3px;
}

.form-input {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.5;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #008bf6;
    box-shadow: 0 0 0 3px rgba(0, 139, 246, 0.1);
}

.form-select {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.5;
    background-color: white;
    transition: border-color 0.2s ease;
}

.form-select:focus {
    outline: none;
    border-color: #008bf6;
    box-shadow: 0 0 0 3px rgba(0, 139, 246, 0.1);
}

.form-label.bmd-label-static {
    transition: color 0.2s ease;
}

.form-group:focus-within .form-label.bmd-label-static {
    color: #424242;
}

.category-description {
    margin-top: 5px;
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
}

.suggestion-editor-container {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    overflow: hidden;
}

.suggestion-editor {
    width: 100%;
    min-height: 300px;
    max-height: 600px;
    border: none;
    outline: none;
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
    font-family: inherit;
    resize: vertical;
    overflow-y: auto;
}

.suggestion-editor:focus {
    color: #374151;
}

.suggestion-editor[contenteditable="true"]:empty:before {
    content: attr(data-placeholder);
    color: #9ca3af;
    font-style: italic;
}

.suggestion-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    z-index: 1;
}

.character-counter {
    margin-top: 8px;
    font-size: 13px;
    color: #6c757d;
    text-align: right;
}

.character-counter.warning {
    color: #fd7e14;
}

.character-counter.danger {
    color: #dc3545;
}

.form-help-text {
    margin-top: 5px;
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
}

.form-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-top: 8px;
}

.form-footer-row .form-help-text {
    flex: 1;
    margin-top: 0;
}

.form-footer-row .character-counter {
    margin-top: 0;
    flex-shrink: 0;
}

.alert {
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 1px solid;
    border-radius: 6px;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #b6d4db;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 14px;
    border-top: 1px solid #e9ecef;
}

.form-actions-edit {
	justify-content: flex-end !important;
}

.btn-primary {
    background: #008bf6;
    color: white;
    border: 1px solid #008bf6;
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: 1px solid #6c757d;
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #545b62;
    border-color: #545b62;
    color: white;
    text-decoration: none;
}

.user-comments-header {
    margin-bottom: 32px;
    padding: 20px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.comments-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.user-comments-title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 16px;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #6b7280;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.back-link:hover {
    color: #374151;
    background: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transform: translateY(-1px);
}

.back-link i {
    font-size: 16px;
}

.user-name {
    font-weight: 500;
    color: #111827;
}

.page-title {
    color: #8b8f93;
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .suggestion-header {
        flex-direction: column;
        align-items: flex-start;
		margin-bottom: 18px;
    }

	.suggestion-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

    .suggestion-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .suggestion-detail-badges {
        align-items: flex-start;
        flex-direction: row;
        gap: 8px;
    }

    .suggestion-detail-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .suggestion-detail-stats {
        width: 100%;
    }

    .suggestion-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .vote-stat {
        padding: 3px 6px;
        font-size: 13px;
    }

    .user-comments-header {
        padding: 20px 0;
        margin-bottom: 20px;
        border-radius: 12px;
    }

    .comments-header-content {
        padding: 0;
    }

    .user-comments-title {
        font-size: 22px;
        align-items: center;
        gap: 12px;
    }

    .back-link {
        padding: 12px 16px;
        gap: 10px;
        min-height: 44px;
        border-radius: 12px;
    }

    .back-link .user-name {
        display: none;
    }

    .suggestion-submit-form {
        padding: 20px;
    }

    .suggestion-toolbar {
        padding: 8px 12px;
        gap: 6px;
    }

    .suggestion-editor {
        min-height: 250px;
        padding: 15px;
        font-size: 15px;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary, .btn-secondary {
        justify-content: center;
        width: 100%;
    }

	.suggestion-header .suggestion-badges {
		margin-top: 6px;
	}
}

@media (max-width: 480px) {
    .suggestion-detail-item {
        padding: 16px;
    }

    .suggestion-detail-title {
        font-size: 20px;
    }

    .stat-item {
        font-size: 13px;
    }

    .vote-stat {
        padding: 2px 4px;
        font-size: 12px;
    }

    .user-comments-header {
        padding: 6px 0;
        margin-bottom: 16px;
    }

    .comments-header-content {
        padding: 0;
    }

    .user-comments-title {
        font-size: 20px;
        gap: 10px;
        margin: 6px;
    }

    .back-link {
        padding: 10px 14px;
        gap: 8px;
    }

    .back-link i {
        font-size: 14px;
    }

    .back-link .user-name {
        display: none;
    }

    .user-name {
        font-size: 14px;
    }

    .page-title {
        font-size: 19px;
    }
}

.timestamp-group {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.edited-badge {
    display: inline-block;
    font-size: 12px;
    color: #6c757d;
    font-style: italic;
    cursor: help;
    transition: color 0.2s ease;
}

.edited-badge:hover {
    color: #495057;
}

.bbcode-content.suggestions-content img,
.suggestion-description img,
.suggestion-detail-description img {
    max-width: 400px !important;
    max-height: 400px !important;
    width: auto !important;
    height: auto !important;
    border-radius: 6px;
    cursor: pointer;
    object-fit: cover;
}

@media (max-width: 768px) {
    .bbcode-content.suggestions-content img,
    .suggestion-description img,
    .suggestion-detail-description img {
        max-width: 100% !important;
        max-height: 300px !important;
    }
}

@media (max-width: 480px) {
    .bbcode-content.suggestions-content img,
    .suggestion-description img,
    .suggestion-detail-description img {
        max-width: 100% !important;
        max-height: 250px !important;
    }
}

.suggestion-description.truncated {
    position: relative;
    max-height: 450px !important; 
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.suggestion-description.truncated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, #f8f9fa); 
    pointer-events: none;
}

.suggestion-description.expanded {
    max-height: none !important;
    transition: max-height 0.3s ease-in-out;
}

.suggestion-description.expanded::after {
    display: none;
}

.suggestion-description.no-truncate::after {
    display: none;
}

.suggestion-description + .comment-toggle-btn {
    margin-top: 12px;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .suggestion-description.truncated {
        max-height: 350px !important; 
    }

    .suggestion-description.truncated::after {
        height: 50px;
    }
	.suggestion-meta {
		align-items: flex-start;
		margin-bottom: 4px;
	}

	.meta-content {
		gap: 8px;
	}
	
	.meta-avatar {
		margin-top: 7px;
	}

}

@media (max-width: 480px) {
    .suggestion-description.truncated {
        max-height: 300px !important; 
    }

    .suggestion-description.truncated::after {
        height: 45px;
    }
}

.show-more {
    text-align: center;
    margin-top: 24px;
    padding-top: 16px;
}

.show-more-container {
    text-align: center;
    margin: 32px 0;
}

.show-more-btn {
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 auto;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s;
}

.show-more-btn:hover {
    background: #ebf5ff;
}

.pagination-info {
    margin-top: 8px;
    color: #666;
    font-size: 12px;
}

.all-loaded-message {
    text-align: center;
    margin: 20px 0;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 4px;
    color: #666;
    font-size: 13px;
}

.all-loaded-message i {
    margin-right: 6px;
    color: #4caf50;
}

.breadcrumb-section { 
	margin-bottom: 0 !important; 
}

.comments-container {
	padding-top: 5px !important;
}

.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #008CF3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-spinner {
    display: none;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.suggestion-footer-bottom { display: none; }

@media (max-width: 768px) {

	.suggestion-footer > .suggestion-actions { display: none !important; }

	.suggestion-footer-bottom { display: none !important; }
}