/**
 * frontend/css/lists.css
 * עיצוב מסך בחירת רשימות
 */

.lists-screen {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lists-container {
    max-width: 800px;
    width: 100%;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.lists-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lists-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.lists-header h1 {
    font-size: 2rem;
    color: #1f2937;
    margin: 0;
}

.lists-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
}

.lists-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
    min-height: 100px;
}

.list-card {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s;
    cursor: pointer;
}

.list-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.list-icon {
    font-size: 2rem;
}

.list-info {
    flex: 1;
    text-align: right;
}

.list-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.list-meta {
    font-size: 0.875rem;
    color: #6b7280;
}

.list-meta span {
    margin-left: 0.5rem;
}

.btn-select-list {
    padding: 0.5rem 1.5rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-select-list:hover {
    background: #2563eb;
    transform: scale(1.05);
}

.btn-create-list {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-create-list:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.empty-lists {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}

.empty-lists .empty-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.empty-lists p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.empty-subtitle {
    color: #9ca3af;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .lists-screen {
        padding: 1rem;
    }
    
    .lists-container {
        padding: 1.5rem;
    }
    
    .lists-header h1 {
        font-size: 1.5rem;
    }
    
    .list-card {
        padding: 1rem;
    }
    
    .list-name {
        font-size: 1.1rem;
    }
}

/* frontend/css/lists.css */
