/* Development Hub Styles - Morndale Theme */

/* Hero Section */
.dev-hero {
    background: linear-gradient(145deg, var(--bg-secondary), var(--bg-tertiary));
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    overflow: hidden;
}



.dev-hero-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.dev-hero-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8860b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(218, 165, 32, 0.3);
}

.dev-hero-icon i {
    font-size: 2rem;
    color: #1a1a2e;
}

.dev-hero-text {
    flex: 1;
}

.dev-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0 0 var(--spacing-xs);
    text-shadow: 0 2px 10px rgba(218, 165, 32, 0.3);
}

.dev-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.dev-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.dev-stat {
    background: rgba(20, 27, 40, 0.6);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 8px;
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
}

.dev-stat:hover {
    background: rgba(20, 27, 40, 0.8);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dev-stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(218, 165, 32, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.3rem;
}

.dev-stat-info {
    flex: 1;
}

.dev-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    line-height: 1;
}

.dev-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* Tab Navigation */
.dev-tabs {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    border-bottom: 2px solid rgba(218, 165, 32, 0.2);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) rgba(20, 27, 40, 0.5);
}

.dev-tabs::-webkit-scrollbar {
    height: 6px;
}

.dev-tabs::-webkit-scrollbar-track {
    background: rgba(20, 27, 40, 0.5);
}

.dev-tabs::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 3px;
}

.dev-tab {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    position: relative;
    text-decoration: none;
}

.dev-tab:hover {
    color: var(--accent-gold);
    background: rgba(218, 165, 32, 0.05);
}

.dev-tab.active {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

.dev-tab i {
    font-size: 1.1rem;
}

/* Tab Content */
.dev-tab-content {
    position: relative;
}

.dev-panel {
    display: none !important;
}

.dev-panel.active {
    display: block !important;
    animation: fadeInTab 0.3s ease;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Main Grid Layout: 2/3 + 1/3 */
.dev-main-grid {
    display: grid;

    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.dev-main-column {
    min-width: 0; /* Fix overflow issues */
}

.dev-sidebar-column {
    min-width: 0;
}

/* Bottom Grid: 50/50 */
.dev-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

/* Panel Cards */
.dev-panel-card {
    background: linear-gradient(145deg, var(--bg-secondary), var(--bg-tertiary));;
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dev-panel-card:hover {
    border-color: rgba(218, 165, 32, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.sticky-panel {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.dev-panel-header {
    margin: 0 0 5px 0;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background: rgba(20, 27, 40, 0.6);
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
    padding: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dev-panel-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.dev-panel-title i {
    font-size: 1.2rem;
}

.dev-panel-action {
    background: transparent;
    border: 1px solid rgba(218, 165, 32, 0.3);
    color: var(--accent-gold);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.9rem;
    font-weight: 600;
}

.dev-panel-action:hover {
    background: var(--accent-gold);
    color: #1a1a2e;
    border-color: var(--accent-gold);
    transform: translateX(2px);
}

.dev-panel-body {
    padding: var(--spacing-xl);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--spacing-3xl);
    color: rgba(255, 255, 255, 0.4);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.3;
}

/* Changes Timeline */
.changes-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.change-entry {
    display: flex;
    gap: var(--spacing-md);
}

.change-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4px;
}

.change-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(218, 165, 32, 0.2);
    flex-shrink: 0;
}

.change-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, rgba(218, 165, 32, 0.3), transparent);
    margin-top: 4px;
}

.change-content {
    flex: 1;
    background: rgba(20, 27, 40, 0.5);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 8px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
}

.change-content:hover {
    background: rgba(20, 27, 40, 0.7);
    border-color: rgba(218, 165, 32, 0.3);
}

.change-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.change-meta {
    display: flex;
    gap: var(--spacing-lg);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(218, 165, 32, 0.1);
}

.change-meta i {
    margin-right: 4px;
    color: var(--accent-gold);
}

/* FAQ Sidebar */
.faq-search-wrapper {
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.faq-search-wrapper i {
    position: absolute;
    left: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
}

.faq-search {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-sm) var(--spacing-3xl);
    background: rgba(20, 27, 40, 0.6);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
}

.faq-search:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
}

.faq-quick-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
}

.faq-item-compact {
    background: rgba(20, 27, 40, 0.4);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 6px;
    padding: var(--spacing-sm) var(--spacing-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item-compact:hover {
    background: rgba(20, 27, 40, 0.7);
    border-color: var(--accent-gold);
    transform: translateX(4px);
}

.faq-question-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.faq-question-compact i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.faq-view-all {
    width: 100%;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: var(--spacing-sm);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-weight: 600;
}

.faq-view-all:hover {
    background: var(--accent-gold);
    color: #1a1a2e;
}

/* Task Grid */
.task-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.task-card {
    background: rgba(20, 27, 40, 0.5);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.task-card:hover {
    background: rgba(20, 27, 40, 0.7);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.task-accent {
    height: 4px;
    width: 100%;
}

.task-card-content {
    padding: var(--spacing-md);
}

.task-card-title {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.task-card-meta {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    align-items: center;
}

.task-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.task-badge i {
    font-size: 0.7rem;
}

/* Status and Severity Badges */
.status-badge,
.severity-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.severity-badge i {
    font-size: 0.8rem;
}

/* Issue List */
.issue-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.issue-card {
    background: rgba(20, 27, 40, 0.5);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 8px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
}

.issue-card:hover {
    background: rgba(20, 27, 40, 0.7);
    border-color: var(--accent-gold);
    transform: translateX(4px);
}

.issue-card-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.issue-card-title {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

.issue-card-meta {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

/* Full FAQ Section */
.dev-full-faq {
    margin-top: var(--spacing-2xl);
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.faq-category {
    background: rgba(20, 27, 40, 0.4);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.faq-category-header {
    background: rgba(20, 27, 40, 0.6);
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
    padding: var(--spacing-lg) var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.faq-category-title i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.faq-category-title h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent-gold);
}

.faq-count {
    background: rgba(218, 165, 32, 0.15);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.faq-items {
    padding: var(--spacing-md);
}

.faq-item {
    background: rgba(20, 27, 40, 0.3);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 8px;
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    border-color: rgba(218, 165, 32, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(218, 165, 32, 0.05);
}

.faq-item.active .faq-question {
    background: rgba(218, 165, 32, 0.1);
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.faq-question-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
}

.faq-question i {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: var(--spacing-lg);
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Help Section */
.help-section {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid rgba(218, 165, 32, 0.2);
}

.help-section h3 {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-heading);
    color: var(--accent-gold);
    margin-bottom: var(--spacing-lg);
}

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.help-option {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: rgba(20, 27, 40, 0.5);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.help-option:hover {
    background: rgba(20, 27, 40, 0.7);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.help-option > i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.help-option h4 {
    margin: 0 0 var(--spacing-xs);
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-heading);
}

.help-option p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    padding: 0px;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.98) 0%, rgba(20, 27, 40, 0.98) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
background: rgba(20, 27, 40, 0.6);
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
    padding: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: var(--accent-gold);
    font-family: var(--font-heading);
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(218, 165, 32, 0.2);
}

.modal-body {
    padding: var(--spacing-xl);
    overflow-y: auto;
}

/* Fade in animation */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dev-main-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-panel {
        position: static;
        max-height: none;
    }
}

@media (max-width: 768px) {
    .dev-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .dev-hero-title {
        font-size: 2rem;
    }
    
    .dev-hero-subtitle {
        font-size: 1rem;
    }
    
    .dev-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dev-bottom-grid {
        grid-template-columns: 1fr;
    }
    
    .task-grid {
        grid-template-columns: 1fr;
    }
    
    .help-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .dev-hero {
        padding: var(--spacing-lg);
    }
    
    .dev-hero-icon {
        width: 50px;
        height: 50px;
    }
    
    .dev-hero-icon i {
        font-size: 1.5rem;
    }
    
    .dev-stats {
        grid-template-columns: 1fr;
    }
    
    .dev-panel-body {
        padding: var(--spacing-md);
    }
    
    .change-meta {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}



/* Issues Grid for Full View */
.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.issue-full-card {
    background: rgba(20, 27, 40, 0.5);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 8px;
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    cursor: pointer;
}

.issue-full-card:hover {
    background: rgba(20, 27, 40, 0.7);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.issue-full-card.severity-critical {
    border-left: 4px solid #ef4444;
}

.issue-full-card.severity-major {
    border-left: 4px solid #f59e0b;
}

.issue-full-card.severity-moderate {
    border-left: 4px solid #eab308;
}

.issue-full-card.severity-minor {
    border-left: 4px solid #3b82f6;
}

.issue-full-header {
    margin-bottom: var(--spacing-md);
}

.issue-full-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.issue-full-badges {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.issue-full-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.issue-full-footer {
    display: flex;
    gap: var(--spacing-lg);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(218, 165, 32, 0.1);
}

.issue-full-footer i {
    margin-right: 4px;
    color: var(--accent-gold);
}

/* Roadmap List */
.roadmap-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.roadmap-item {
    display: flex;
    gap: var(--spacing-md);
    background: rgba(20, 27, 40, 0.5);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.roadmap-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateX(4px);
}

.roadmap-indicator {
    width: 6px;
    flex-shrink: 0;
}

.roadmap-content {
    flex: 1;
    padding: var(--spacing-lg);
}

.roadmap-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.roadmap-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
}

.roadmap-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.roadmap-category {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roadmap-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.roadmap-meta {
    display: flex;
    gap: var(--spacing-xl);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(218, 165, 32, 0.1);
}

.roadmap-meta i {
    margin-right: 4px;
    color: var(--accent-gold);
}

/* Completed Tasks List */
.completed-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.completed-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(20, 27, 40, 0.5);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-left: 4px solid #10b981;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.completed-item:hover {
    background: rgba(20, 27, 40, 0.7);
    transform: translateX(4px);
}

.completed-check {
    width: 32px;
    height: 32px;
    background: #10b98120;
    border: 2px solid #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.completed-content {
    flex: 1;
}

.completed-title {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
}

.completed-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
}

.completed-meta {
    display: flex;
    gap: var(--spacing-lg);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.completed-category {
    font-weight: 600;
}

.completed-meta i {
    margin-right: 4px;
}

/* Tab Link Style */
.dev-tab-link {
    text-decoration: none;
    color: inherit;
}

/* Enhanced Issues Tab Styles - Add to development.css */

/* Issues Controls */
.issues-controls {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.issues-filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.issues-filter-group label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    white-space: nowrap;
}

.issues-filter-select {
    padding: 8px 12px;
    background: rgba(20, 27, 40, 0.8);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 6px;
    color: white;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.issues-filter-select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
}

.issues-filter-select:hover {
    border-color: rgba(218, 165, 32, 0.4);
}

/* Issues Summary Stats */
.issues-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(20, 27, 40, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(218, 165, 32, 0.1);
}

.issue-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(20, 27, 40, 0.5);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.issue-stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.critical-stat {
    border-color: rgba(239, 68, 68, 0.3);
}

.critical-stat:hover {
    border-color: #ef4444;
}

.major-stat {
    border-color: rgba(245, 158, 11, 0.3);
}

.major-stat:hover {
    border-color: #f59e0b;
}

.moderate-stat {
    border-color: rgba(234, 179, 8, 0.3);
}

.moderate-stat:hover {
    border-color: #eab308;
}

.minor-stat {
    border-color: rgba(59, 130, 246, 0.3);
}

.minor-stat:hover {
    border-color: #3b82f6;
}

.issue-stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.3rem;
}

.critical-stat .issue-stat-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.major-stat .issue-stat-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.moderate-stat .issue-stat-icon {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
}

.minor-stat .issue-stat-icon {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.issue-stat-info {
    flex: 1;
}

.issue-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.critical-stat .issue-stat-number {
    color: #ef4444;
}

.major-stat .issue-stat-number {
    color: #f59e0b;
}

.moderate-stat .issue-stat-number {
    color: #eab308;
}

.minor-stat .issue-stat-number {
    color: #3b82f6;
}

.issue-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Issues List */
.issues-list-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 16px;
}

.issue-enhanced-card {
    background: rgba(20, 27, 40, 0.5);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 10px;
    padding: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.issue-enhanced-card:hover {
    background: rgba(20, 27, 40, 0.7);
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.issue-enhanced-card.severity-critical {
    border-left: 4px solid #ef4444;
}

.issue-enhanced-card.severity-major {
    border-left: 4px solid #f59e0b;
}

.issue-enhanced-card.severity-moderate {
    border-left: 4px solid #eab308;
}

.issue-enhanced-card.severity-minor {
    border-left: 4px solid #3b82f6;
}

.issue-enhanced-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.issue-enhanced-severity,
.issue-enhanced-status {
    display: flex;
}

.issue-enhanced-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.issue-enhanced-title i {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.issue-enhanced-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.issue-enhanced-footer {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 12px;
    border-top: 1px solid rgba(218, 165, 32, 0.1);
    flex-wrap: wrap;
    align-items: center;
}

.issue-enhanced-reporter,
.issue-enhanced-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.issue-enhanced-reporter i,
.issue-enhanced-time i {
    color: var(--accent-gold);
}

.issue-enhanced-view {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.issue-enhanced-card:hover .issue-enhanced-view {
    transform: translateX(4px);
}

.issue-enhanced-view i {
    font-size: 0.8rem;
}

/* No Results Message */
.issues-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background: rgba(20, 27, 40, 0.3);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 10px;
    text-align: center;
}

.issues-no-results i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
}

.issues-no-results p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.issues-clear-filters {
    background: var(--accent-gold);
    color: #1a1a2e;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.issues-clear-filters:hover {
    background: #b8860b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .issues-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .issues-filter-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .issues-filter-select {
        width: 100%;
    }
    
    .issues-summary {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .issues-list-enhanced {
        grid-template-columns: 1fr;
    }
    
    .issue-enhanced-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .issue-enhanced-view {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .issues-summary {
        grid-template-columns: 1fr;
    }
}