/* ==========================================
   Sidebar Tabs - Dark Theme
   ========================================== */

.sidebar-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    margin-bottom: 6px;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.sidebar-tab:hover {
    background: #2a2d2e;
}

.sidebar-tab.active {
    background: #37373d;
    border-left: 3px solid #0e639c;
    padding-left: 9px;
}

.sidebar-tab-info {
    flex: 1;
    min-width: 0;
}

.sidebar-tab-title {
    font-size: 14px;
    font-weight: 500;
    color: #cccccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-tab-meta {
    font-size: 11px;
    color: #858585;
    margin-top: 2px;
}

.sidebar-tab-modified {
    color: #f48771;
    font-size: 18px;
    margin-right: 5px;
}

.sidebar-tab-close {
    opacity: 0;
    padding: 2px 6px;
    font-size: 20px;
    color: #858585;
    transition: all 0.2s;
    border-radius: 4px;
}

.sidebar-tab:hover .sidebar-tab-close {
    opacity: 1;
}

.sidebar-tab-close:hover {
    background: #464647;
    color: #cccccc;
}

/* Home Page */
.home-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: #1e1e1e;
    padding: 40px;
}

.home-content {
    max-width: 800px;
    width: 100%;
}

.home-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #252526;
    border: 2px solid #3e3e42;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.action-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.action-card h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #cccccc;
}

/* Responsive */
@media (max-width: 768px) {
    .home-actions {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .action-card {
        padding: 30px 20px;
    }
    
    .action-icon {
        font-size: 36px;
    }
}