/* ============================================
 * PROJECT MANAGER - STYLES
 * ============================================
 * Additional styles for ProjectManager components
 * Note: Skeleton styles are in combined.css (project-skeleton, etc.)
 */

/* ============================================
 * PROJECT BUCKET SECTIONS
 * ============================================ */

.project-bucket-section {
    margin-bottom: 4px;
}

.project-bucket-header {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    user-select: none;
    transition: color 0.15s ease;
}

.project-bucket-header:hover {
    color: rgba(255, 255, 255, 0.85);
}

.project-bucket-header .bucket-toggle {
    width: 12px;
    margin-right: 6px;
    font-size: 8px;
    transition: transform 0.2s ease;
}

.project-bucket-header.collapsed .bucket-toggle {
    transform: rotate(-90deg);
}

.project-bucket-header .bucket-title {
    flex: 1;
}

.project-bucket-header .bucket-count {
    font-size: 10px;
    opacity: 0.6;
}

.project-bucket-body {
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

/* First project in Most Recent - subtle highlight, no border */
.project-bucket-section[data-bucket="most-recent"] .sidebar-item.project-item:first-child {
    background: rgba(255, 255, 255, 0.03);
}

/* ============================================
 * PROJECT DOT INDICATOR
 * ============================================ */

.project-dot-indicator {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #f5a623;
    border-radius: 50%;
    z-index: 10;
    animation: activeProjectPulse 2s ease-in-out infinite;
}

@keyframes activeProjectPulse {
    0%, 100% { 
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: translateY(-50%) scale(1.2);
    }
}


/* ============================================
 * CONTENT TRANSITION
 * ============================================ */

.projects-content-enter {
    opacity: 0.5;
}

.projects-content-enter-active {
    opacity: 1;
    transition: opacity 0.2s ease-out;
}

/* ============================================
 * SHARED BADGE
 * ============================================ */

.project-shared-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0 4px;
}

.project-shared-badge img {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

