/* Dashboard header */
.dashboard-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.dashboard-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.dashboard-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.stats-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

a.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.user-stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.user-stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
    .dashboard-title {
        font-size: 2rem;
    }

    .stats-cards {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Hero search styling */
.search-hero-container .input-group {
    border-radius: 0.75rem;
    overflow: hidden;
}

.search-hero-container .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    border-color: #86b7fe;
}

/* Quick actions */
.quick-action-btn {
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Activity feed */
.activity-item {
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.activity-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #dee2e6;
}

.activity-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.activity-placeholder {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sidebar widgets */
.sidebar-widget {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-widget h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.collection-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f5;
}

.collection-item:last-child {
    border-bottom: none;
}

.collection-item:hover {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* Status badges */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-ready {
    background: #d4edda;
    color: #155724;
}

.status-uploading {
    background: #cfe2ff;
    color: #084298;
}

.status-processing {
    background: #d1ecf1;
    color: #0c5460;
}

.status-transcribing {
    background: #e2e3e5;
    color: #41464b;
}

.status-error {
    background: #f8d7da;
    color: #721c24;
}

.status-compressed {
    background: #d1ecf1;
    color: #055160;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 1rem;
    margin: 2rem 0;
}

.empty-state-icon {
    font-size: 3rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}
