/* Feedback Section */
.feedback-section {
    padding-top: 120px;
    min-height: 100vh;
    background-color: var(--dark-bg);
    position: relative;
}

.feedback-section .container {
    max-width: 100% !important;
    padding-left: 0;
    padding-right: 0;
}

/* Feedback Wrapper - contains sidebar and grid */
.feedback-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

/* User Badges Sidebar */
.user-badges-container {
    flex-shrink: 0;
    width: 180px;
    background: var(--secondary-color);
    border: 2px solid rgba(255, 107, 66, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    position: sticky;
    top: 140px;
}

.user-badges-container h3 {
    font-size: 1rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.user-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.user-badge {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 107, 66, 0.3);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
}

.user-badge:hover {
    background: var(--accent-orange);
}

.user-badge.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    box-shadow: 0 0 10px rgba(255, 107, 66, 0.5);
}

/* Feedback Grid */
.feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    flex: 1;
}

/* Rest of the CSS stays the same... */
.feedback-column {
    background: var(--secondary-color);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid rgba(255, 107, 66, 0.1);
    min-width: 0;
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 66, 0.2);
}

.feedback-header h3 {
    font-size: 1.5rem;
    color: var(--accent-orange);
    letter-spacing: 1px;
}

/* Resolved column header - teal color */
.feedback-column:nth-child(3) .feedback-header h3 {
    color: #26a69a;
}

.sort-btn {
    background: var(--dark-bg);
    color: var(--text-light);
    border: 1px solid rgba(255, 107, 66, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-btn:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

.sort-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.sort-btn[data-order="asc"] .sort-icon {
    transform: rotate(180deg);
}

/* Feedback List */
.feedback-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feedback-item {
    background: var(--dark-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
    transition: all 0.3s ease;
}

.feedback-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 107, 66, 0.2);
}

/* Feedback header row with type badge */
.feedback-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.feedback-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.feedback-user {
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 1rem;
}

.feedback-date {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.feedback-text {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Type badge for resolved column */
.type-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.type-badge.bug {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
}

.type-badge.feature {
    background-color: rgba(13, 110, 253, 0.2);
    color: #0d6efd;
    border: 1px solid #0d6efd;
}

/* Resolution comment section - using teal color */
.resolution-comment {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background-color: rgba(38, 166, 154, 0.15);
    border-left: 3px solid #26a69a;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.resolution-comment strong {
    color: #26a69a;
    margin-right: 0.5rem;
}

/* Resolved item styling - teal accent */
.feedback-item.resolved-item {
    opacity: 0.85;
    background: rgba(30, 30, 30, 0.8);
    border-left-color: #26a69a;
}

.feedback-item.resolved-item:hover {
    opacity: 1;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(38, 166, 154, 0.2);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-gray);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feedback-wrapper {
        flex-direction: column;
    }

    .user-badges-container {
        width: 100%;
        position: static;
    }

    .feedback-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .feedback-grid {
        grid-template-columns: 1fr;
    }

    .feedback-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .sort-btn {
        align-self: stretch;
        justify-content: center;
    }
}
