/* Members Dashboard Specific Styles */

.dashboard-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.main-content {
    width: 100%;
}

.sidebar {
    width: 100%;
    padding-top: 3.2rem;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feed-header h2 {
    font-size: 1.5rem;
    color: #ffffff;
}

.search-bar-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
}

.search-input::placeholder {
    color: #707070;
}

.pill-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pill-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    cursor: pointer;
}

.pill-btn:hover,
.pill-btn.active {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00e5ff;
    color: #00e5ff;
}

.feed-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.feed-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.feed-card-title {
    color: #00e5ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.feed-card-title:hover {
    text-decoration: underline;
}

.feed-card-desc {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-grid {
        padding: 1rem;
    }

    .feed-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Responsive - stack columns on mobile */
@media (max-width: 968px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}
/* Sidebar widget styling */
.changelog-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.repo-list-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

/* Sidebar heading styles */
.changelog-widget h4,
.repo-list-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

/* Settings page layout */
.settings-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

.settings-sidebar {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    position: sticky;
    top: 2rem;
}

.settings-sidebar h3 {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 1.5rem 0 0.75rem 0;
    padding-left: 0.5rem;
}

.settings-sidebar h3:first-of-type {
    margin-top: 0;
}

.settings-nav-item {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #a0a0a0;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.2s;
    margin-bottom: 0.25rem;
}

.settings-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.settings-nav-item.active {
    background: rgba(0, 229, 255, 0.1);
    color: #00e5ff;
    font-weight: 500;
}

.settings-content {
    width: 100%;
}

.settings-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.settings-content-header h2 {
    font-size: 1.5rem;
    color: #ffffff;
}

.key-list-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.key-details h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.key-meta {
    font-size: 0.85rem;
    color: #a0a0a0;
    font-family: 'Courier New', monospace;
    margin-bottom: 0.25rem;
}

.key-date {
    font-size: 0.85rem;
    color: #707070;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .settings-layout {
        grid-template-columns: 1fr;
    }
    
    .settings-sidebar {
        position: static;
    }
}
