.ghl-pipeline-board {
    display: flex;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    min-height: calc(100vh - 200px);
}

.ghl-stage {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
}

.ghl-stage-header {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e4e7;
}

.ghl-stage-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.ghl-stage-stats {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 13px;
}

.ghl-opportunities-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ghl-opportunity-card {
    background: white;
    border: 1px solid #e2e4e7;
    border-radius: 6px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.ghl-opportunity-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #1e1e1e;
}

.ghl-opportunity-value {
    font-size: 16px;
    font-weight: 600;
    color: #28a745;
    margin-bottom: 8px;
}

.ghl-opportunity-meta {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: #666;
}

.ghl-pipeline-selector {
    margin: 20px 0;
    padding: 0 20px;
}

.ghl-pipeline-selector select {
    min-width: 200px;
}

/* Responsive adjustments */
@media screen and (max-width: 782px) {
    .ghl-pipeline-board {
        flex-direction: column;
    }
    
    .ghl-stage {
        min-width: 100%;
    }
} 